POST
/
profiles
/
members
curl --request POST \
  --url https://api.live.paisr.tech/{version}/profiles/members \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "jsmith@example.com",
  "role": "admin"
}'
{
  "success": true,
  "data": {
    "id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
The details required to invite a member to your business profile.
email
string
required

Personal or business email address.

role
enum<string>
required

The role of access to profile related resources.

Available options:
admin,
manager,
operator,
developer
Example:

"admin"

Response

200
application/json
Successfully invited member.
success
boolean
default:true

Indicates if the request was successful.

data
object