Skip to main content
POST
/
api
/
v1
/
contact-groups
/
{group_id}
/
members
Add a contact to a group.
curl --request POST \
  --url https://api.backside.app/api/v1/contact-groups/{group_id}/members \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'

Authorizations

Authorization
string
header
required

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

Path Parameters

group_id
string<uuid>
required

Group ID

Body

application/json
contact_id
string<uuid>
required

Response

201

Contact added to group