Payment

Retrieves the collection of Payment resources.

get

Retrieves the collection of Payment resources.

Autorisierungen
Abfrageparameter
id[between]stringOptional
id[gt]stringOptional
id[gte]stringOptional
id[lt]stringOptional
id[lte]stringOptional
Antworten
200

Payment collection

get
GET /payments HTTP/1.1
Host: api
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Payment collection

{
  "hydra:member": [
    {
      "@id": "text",
      "@type": "text",
      "@context": "text",
      "id": 1,
      "amount": 1,
      "internalReference": "text",
      "additionalInfo": "text",
      "externalReference": "text",
      "transactionDate": "2025-09-13T06:57:22.378Z",
      "valueDate": "2025-09-13T06:57:22.378Z",
      "insertDate": "2025-09-13T06:57:22.378Z",
      "uniqueTransactionId": "text",
      "importedAccountNumber": "text",
      "importedBankCode": "text",
      "importedPayerName": "text",
      "userType": "",
      "backendUserId": 1,
      "correctionForPayment": "/entitiy/1",
      "invoice": "/entitiy/1",
      "paymentMethod": "/entitiy/1"
    }
  ],
  "hydra:totalItems": 1,
  "hydra:view": {
    "@id": "string",
    "type": "string",
    "hydra:first": "string",
    "hydra:last": "string",
    "hydra:previous": "string",
    "hydra:next": "string"
  },
  "hydra:search": {
    "@type": "text",
    "hydra:template": "text",
    "hydra:variableRepresentation": "text",
    "hydra:mapping": [
      {
        "@type": "text",
        "variable": "text",
        "property": "text",
        "required": true
      }
    ]
  }
}

Retrieves a Payment resource.

get

Retrieves a Payment resource.

Autorisierungen
Pfadparameter
idstringErforderlich

Resource identifier

Antworten
200

Payment resource

get
GET /payments/{id} HTTP/1.1
Host: api
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "@id": "text",
  "@type": "text",
  "@context": "text",
  "id": 1,
  "amount": 1,
  "internalReference": "text",
  "additionalInfo": "text",
  "externalReference": "text",
  "transactionDate": "2025-09-13T06:57:22.378Z",
  "valueDate": "2025-09-13T06:57:22.378Z",
  "insertDate": "2025-09-13T06:57:22.378Z",
  "uniqueTransactionId": "text",
  "importedAccountNumber": "text",
  "importedBankCode": "text",
  "importedPayerName": "text",
  "userType": "",
  "backendUserId": 1,
  "correctionForPayment": "/entitiy/1",
  "invoice": "/entitiy/1",
  "paymentMethod": "/entitiy/1"
}

War das hilfreich?