PUT
/
v2
/
invites
/
manager
Execute admin invites
curl --request PUT \
  --url https://b2b-api.dev-riseworks.io/v2/invites/manager \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "invites": [
    "<string>"
  ],
  "signer": "<string>",
  "typed_data": {
    "from": "<string>",
    "to": "<string>",
    "salt": "<string>",
    "expires": "<string>",
    "data": [
      {
        "role": "<string>",
        "account": "<string>"
      }
    ]
  },
  "signature": "<string>"
}'
{
  "success": true,
  "data": {
    "invites": [
      "<string>"
    ],
    "transaction": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Default Response

The response is of type object.