Get clients tags

GET /api/v2/clients/{ClientGUID}/tags

Get details on which tags have been added for a specific client.

Path parameters

  • ClientGUID string(uuid) Required

    The GUID of the client from which you want to obtain the tag information.

Responses

GET /api/v2/clients/{ClientGUID}/tags
curl \
 -X GET https://api.fincalc.co.uk/api/v2/clients/{ClientGUID}/tags \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "success": true,
  "data": [
    {
      "TagGUID": "3F0B1C88-6D80-4C17-BB3E-1D68E6D26405",
      "CompanyID": 2,
      "TagName": "Accumulation",
      "TagColour": "#000FFF",
      "FormattedValues": {
        "CompanyID": "FinCalc"
      }
    }
  ]
}
Response examples (403)
{
  "success": false,
  "message": "You do not have permission to view that client."
}
Response examples (404)
{
  "success": false,
  "message": "Client not found."
}