Cancel fact find request

DELETE /api/v2/clients/backoffice/{BackOfficeID}/factfind

This endpoint allows a user to cancel a fact find request.

Path parameters

  • BackOfficeID string(uuid) Required

    The BackOfficeID of the client you wish to cancel a fact find for.

Responses

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
  • 403 application/json

    Permission error.

    Hide response attributes Show response attributes object
  • 404 application/json

    Client not found

    Hide response attributes Show response attributes object
DELETE /api/v2/clients/backoffice/{BackOfficeID}/factfind
curl \
 -X DELETE https://api.fincalc.co.uk/api/v2/clients/backoffice/{BackOfficeID}/factfind \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "success": true,
  "data": 1
}
Response examples (403)
{
  "success": false,
  "message": "You do not have permission to view that client."
}
Response examples (404)
{
  "success": false,
  "message": "Client not found."
}