Skip to main content
POST
/
v0
/
organisation
/
{org_id}
/
members
Add a member to the organisation
curl --request POST \
  --url https://sis.sumvin.com/v0/organisation/{org_id}/members \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "email": "jsmith@example.com"
}
'
{
  "_links": {
    "self": {
      "href": "<string>",
      "method": "GET",
      "templated": false,
      "description": "<string>"
    },
    "organisation": {
      "href": "<string>",
      "method": "GET",
      "templated": false,
      "description": "<string>"
    }
  },
  "member": {
    "id": "<string>",
    "name": "<string>",
    "email": "<string>",
    "status": "<string>",
    "created_at": 123
  }
}

Authorizations

Authorization
string
header
required

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

Headers

user-agent
string | null

Path Parameters

org_id
string
required

Body

application/json
name
string
required
Required string length: 1 - 255
email
string<email>
required

Response

Successful Response

member
MemberData · object
required