Get relationship options

GET /api/v2/clients/relationships/options

This endpoint provides a comprehensive list of valid options for each field. The response example displayed is only a summarised version of the actual list. By using this endpoint, a complete list of available options for each field can be retrieved.

Responses

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
GET /api/v2/clients/relationships/options
curl \
 -X GET https://api.fincalc.co.uk/api/v2/clients/relationships/options \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "success": true,
  "data": {
    "RelationshipID": {
      "1": "Spouse Spouse",
      "2": "Partner Partner",
      "3": "Parent Child",
      "4": "Child Parent",
      "5": "Sibling Sibling",
      "6": "Friend Friend",
      "7": "Business Colleague Business Colleague",
      "8": "GrandChild GrandParent",
      "9": "GrandParent GrandChild",
      "10": "In a Household In a Household",
      "11": "Civil Partner Civil Partner"
    }
  }
}