SDD Collection Applications

Index SDD collection applications

Returns a list of all SDD collection applications for the person specified in the request URL.

get/v1/persons/{person_id}/sdd_collection_applications

Path parameters

person_idstring required

Query parameters

page[size]integer

Specifies the number of resources to return in each page of results.

page[number]integer

Specifies the number of pages of results to return.

filter[status]string

Filter the results by status.

Response

The operation was successful.

idstring

ID of the SDD collection application.

person_idstring

ID of the person who created the SDD collection application.

credit_record_idstring

The credit_record_id of the SDD collection application.

sdd_collection_idstring

ID of the SDD collection.

account_snapshot_idstring

ID of the relevant account snapshot record.

statusstring

The current status of the SDD collection application.

decision'OFFERED' | 'REJECTED'

The decision taken on the SDD collection application.

rejection_reasonsstring[]

An array of reasons why the SDD collection application was rejected.

created_atstring date-time

UTC timestamp from when the application was created.

Example response

[
  {
    "id": "dec2961f594045159195ca66e55fd6ea",
    "person_id": "ec71f4b0456b424b97cc8be75b2c77d4",
    "credit_record_id": "84f468eacc7a4784ba0d4b0b577a9265",
    "sdd_collection_id": "c06fbfcc98b04376a9f220c4578932e4",
    "account_snapshot_id": "973a5f01ed7a416fadfed954c5bce782",
    "status": "pending",
    "decision": "OFFERED",
    "rejection_reasons": [
      "probability_of_default"
    ],
    "created_at": "2021-10-20T14:45:54Z",
    "limit": {
      "value": 10000,
      "unit": "cents",
      "currency": "EUR"
    }
  }
]