CINC API

Flagged Collections

Allows you to get information about collections.

Currently allowing the following protocols:

  • GET

Request URL

GET End Point

https://yourcustomerdatabase.cincsys.com/api/management/{mgmtId}/flaggedcollections

Parameter Descriptions

  • mgmtId (Management Id): Pass your management ID.

Paramter Types

  • mgmtId: string (required)

Response Body

The response object:

{
"AttachmentId": int,
"AccountNum": string,
"Description": string,
"SendToCollectionAgency": 1,
"HomeOwnerFirstName": string,
"HomeOwnerLastName": string,
"PropertyAddress": string,
"PropertyCity": string,
"PropertyZip": string,
"PropertyTextNotes": string,
"PropertyNotes": string,
"Balance": decimal
}

The following shows example data being returned

[
{
"AttachmentId": null,
"AccountNum": "32158",
"Description": "Test New",
"SendToCollectionAgency": 1,
"HomeOwnerFirstName": "Ricky",
"HomeOwnerLastName": "PriyaQA",
"PropertyAddress": "Ash",
"PropertyCity": "Ash",
"PropertyZip": "28420",
"PropertyTextNotes": null,
"PropertyNotes": null,
"Balance": 57
},
]

Response Codes

200 - OK: Everything worked as expected.

400 - Bad Request: The request was unacceptable, often due to missing a required parameter.

401 - Unauthorized: No valid API key provided.

402 - Request Failed: The parameters were valid but the request failed.

403 - Forbidden: The API key does not have permission to perform the request.

404 - Not Found: The requested resource does not exist.