Path parameters

  • client_uuid string Required
application/json

Body

  • account_uuid string(uuid) Required

    The client that you would like to be linked.

  • relationship string Required

    The relationship to the linked client.

  • inverse_relationship string Required

    The inverse relationship to the client.

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.

    • relationship string

      The relationship to the linked client.

POST /api/v1/client/{client_uuid}/linked-clients
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/client/6ff8f7f6-1eb3-3525-be4a-3932c805afed/linked-clients' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"account_uuid":"cfffb4ce-f37a-4810-aa3d-c912587e2abc","relationship":"Son","inverse_relationship":"Father"}'
Request examples
{
  "account_uuid": "cfffb4ce-f37a-4810-aa3d-c912587e2abc",
  "relationship": "Son",
  "inverse_relationship": "Father"
}
Response examples (201)
{
  "name": "Gareth",
  "uuid": "49c6e8e1-f913-4ea4-9e1b-e01623db5267",
  "relationship": "Father"
}