Skip to main content
PATCH
/
organizations
/
{organizationName}
/
groups
/
{groupName}
/
members
/
{memberName}
Update group member status
curl --request PATCH \
  --url https://{organization}.admin.credibledata.com/api/v0/organizations/{organizationName}/groups/{groupName}/members/{memberName} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "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_-]+$
memberName
string
required

The unique identifier of the group member Valid email address pattern

Pattern: ^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$

Body

application/json
status
enum<string>

The new status for the member

Available options:
admin,
member

Response

Member status updated successfully