Skip to main content
GET
/
v1
/
credit_cases
/
{id}
Get administration credit case by id
curl --request GET \
  --url https://api.paytsoftware.com/v1/credit_cases/{id} \
  --header 'Authorization: Bearer <token>'
{
  "case_number": "<string>",
  "administration_id": "<string>",
  "debt_collection_costs": "<string>",
  "id": "<string>",
  "interest_costs": "<string>",
  "debtor_id": "<string>",
  "payment_plan_id": "<string>",
  "active_payment_plan_id": "<string>",
  "forwarded_to_bailiff_at": "2023-11-07T05:31:56Z",
  "latest_summons_at": "2023-11-07T05:31:56Z",
  "notice_of_default_at": "2023-11-07T05:31:56Z",
  "pre_judicial_at": "2023-11-07T05:31:56Z",
  "pre_summons_at": "2023-11-07T05:31:56Z",
  "paused_at": "2023-11-07T05:31:56Z",
  "first_summons_at": "2023-11-07T05:31:56Z",
  "summons_1_at": "2023-11-07T05:31:56Z",
  "summons_2_at": "2023-11-07T05:31:56Z",
  "summons_3_at": "2023-11-07T05:31:56Z",
  "summons_4_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "labels": [
    {
      "name": "<string>"
    }
  ],
  "internal_note_email_address": "<string>"
}

Authorizations

Authorization
string
header
required

OAuth2 access token or static API token. See Authorization for how to obtain one.

Path Parameters

id
string
required

Credit case identifier

Query Parameters

administration_id
string
required

Administration identifier

fields
object

JSON object defining fields to receive (e.g {"only": ["field1", {"field2": ["field3"]}]})

Response

Credit case

CustomerApi_V1_CreditCaseEntity model

case_number
string
required

Case number

administration_id
string
required

Owning administration identifier

debt_collection_costs
string
required

Debt collection costs

id
string
required

Unique identifier

interest_costs
string
required

Interest

debtor_id
string
required

Associated debtor identifier

payment_plan_id
string
required

DEPRECATED, use active_payment_plan_id instead

active_payment_plan_id
string
required

Associated active payment plan.

forwarded_to_bailiff_at
string<date-time>
required

Timestamp at which the credit case was forwarded to a bailiff

latest_summons_at
string<date-time>
required

Timestamp at which the latest summons was sent. This value will be higher than the highest summons_X_at when the credit_case is mentioned in a notice of default.

notice_of_default_at
string<date-time>
required

Timestamp at which the notice of default was sent

pre_judicial_at
string<date-time>
required

Timestamp at which the pre-judicial phase started

pre_summons_at
string<date-time>
required

Timestamp at which the debt collection notice was performed

paused_at
string<date-time>
required

Timestamp at which the credit case was last paused

first_summons_at
string<date-time>
required

DEPRECATED: use summons_1_at instead

summons_1_at
string<date-time>
required

Timestamp at which the first summons was sent

summons_2_at
string<date-time>
required

Timestamp at which the second summons was sent

summons_3_at
string<date-time>
required

Timestamp at which the third summons was sent

summons_4_at
string<date-time>
required

Timestamp at which the fourth summons was sent

updated_at
string<date-time>
required

Timestamp at which the credit case was last updated

labels
object[]

Labels (request with the 'fields' parameter)

internal_note_email_address
string

Internal note email address

Last modified on June 12, 2026