Seizures

Index seizures for a person

Returns an array containing all seizures for the person specified in the request URL. Note that the amount of a seizure always reflects the total amount of the seizure, even if part of it has been paid. It does not reflect the outstanding amount of the seizure.

get/v1/persons/{person_id}/seizures

Path parameters

person_idstring required

Query parameters

page[number]string

The number of results pages to return.

page[size]string

The size of each page in the response.

sort'created_at'

Sort the results by the date when the seizure was created.

filter[status]string

Filter the results by seizure status.

Response

Successful result of the operation

idstring

Unique ID of the seizure resource.

enactment_datestring date

The date when the authority issued the seizure.

delivery_datestring date

The date when the seizure notice was delivered to Solaris.

authority_namestring

The name of the authority that issued the seizure.

resolution_case_numberstring

The seizure's case ID number, generated by the issuing authority.

seizure_type'ATTACHMENT' | 'AUTHORITY_SEIZURE' | 'COURT_SEIZURE' | 'PRE_ATTACHMENT'

The type of seizure.

status'ACTIVE' | 'FULFILLED' | 'WAITING_FOR_AUTHORITY'

The current status of the seizure.

Example response

[
  {
    "id": "211c5c2f34ac442ff6f93d09fc8fb3edseiz",
    "enactment_date": "2019-01-31",
    "delivery_date": "2019-01-28",
    "authority_name": "Court",
    "resolution_case_number": "Number 212121212",
    "amount": {
      "value": 1000,
      "unit": "cents",
      "currency": "EUR"
    },
    "additional_cost": {
      "value": 1000,
      "unit": "cents",
      "currency": "EUR"
    },
    "debtor": {
      "state": "BE"
    },
    "creditor": {
      "name": "Betflix LLC",
      "address": "Bethousestrasse 43",
      "postal_code": "10409",
      "city": "Berlin",
      "state": "BE",
      "iban": "DE72110101001000014344"
    },
    "creditor_representative": {
      "name": "Lawyer LLC",
      "address": "Gunsterstrasse 22",
      "postal_code": "10409",
      "city": "Berlin",
      "state": "BE",
      "case_number": "42ABC-2",
      "iban": "DE87110101001000057123"
    }
  }
]