POST
/
organizations
/
{organizationId}
/
invites
curl --request POST \
  --url https://app.dynamicauth.com/api/v0/organizations/{organizationId}/invites \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "walletPublicKey": "0xbF394748301603f18d953C90F0b087CBEC0E1834",
  "alias": "An example name",
  "email": "hello-world@foobar.com",
  "phoneNumber": "+1234567890",
  "role": "owner"
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

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

Path Parameters

organizationId
string
required

ID of organization

Required string length: 36
Example:

"95b11417-f18f-457f-8804-68e361f9164f"

Body

application/json
role
enum<string>
required
Available options:
owner,
admin,
developer,
viewer
walletPublicKey
string

Valid blockchain wallet address, must be an alphanumeric string without any special characters

Maximum length: 255
Example:

"0xbF394748301603f18d953C90F0b087CBEC0E1834"

alias
string
Maximum length: 255
Example:

"An example name"

email
string
Maximum length: 255
Example:

"hello-world@foobar.com"

phoneNumber
string
Maximum length: 255
Example:

"+1234567890"

Response

200
_mintlify/placeholder

Invite created