Create a client link

POST /api/v1/client/{client_uuid}/linked-clients

Headers

Path parameters

application/json

Body Required

Responses

  • 201 application/json
    Hide response attributes Show response attributes object
    • uuid string

      The unique identifier of the linked client.

    • name string

      The name of the linked client.

    • The relationship to the linked client.

POST /api/v1/client/{client_uuid}/linked-clients
curl \
 -X POST https://api.plannrcrm.com/api/v1/client/client_uuid/linked-clients \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json" \
 -d '{"account_uuid":"string","relationship":"Son","inverse_relationship":"Father"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "account_uuid": "string",
  "relationship": "Son",
  "inverse_relationship": "Father"
}
Response examples (201)
{
  "name": "Gareth",
  "uuid": "3b073831-43f2-4832-b3b2-14857ad7f298",
  "relationship": "Father"
}