Skip to main content
POST
/
organizations
/
{organizationName}
/
groups
/
{groupName}
/
members
Add group members
curl --request POST \
  --url https://{organization}.admin.credibledata.com/api/v0/organizations/{organizationName}/groups/{groupName}/members \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "members": [
    {
      "userGroupId": "<string>",
      "status": "admin"
    }
  ]
}
'
{
  "code": "<string>",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

organizationName
string
required

The unique identifier of the organization Standard identifier pattern for resource names

Pattern: ^[a-zA-Z0-9_-]+$
groupName
string
required

The unique identifier of the group Standard identifier pattern for resource names

Pattern: ^[a-zA-Z0-9_-]+$

Body

application/json
members
object[]

List of members to add with their status and CredibleResourceUri

Response

Members added successfully