BatchEntryList

GEThttps://api.twisto.cz/psp/v4/batch/{batchUuid}/entry
GEThttps://api.twisto.pl/psp/v4/batch/{batchUuid}/entry

Get a list of batch entries.

Security: Bearer Auth

Provide your bearer token in the Authorization header when making requests to protected resources.
Example: Authorization: Bearer 123

Path Parameters

Param nameTypeDescriptionRequiredDefault valuesMin/Max values
batchUuidstringBatch identifiertrue

Query Parameters

Param nameTypeDescriptionRequiredDefault valuesMin/Max values
limitintegerRecords limitfalse20011000
skipintegerSkip number of recordsfalse0

Responses

Body

  • count: integer
    Example 123
  • next: string<uri> or null
    Example http://api.example.org/accounts/?skip=400&limit=100
  • previous: string<uri> or null
    Example http://api.example.org/accounts/?skip=200&limit=100
  • items: array[object]
    • id: string<uuid>
      required

      Identifier

    • type: string
      required

      Type of batch entry: any of "order" or "refund"

      Allowed values: order refund 
    • destination_account_number: string or null
      required

      Destination bank account number

    • reference: string or null
      required

      Settlement reference used in relevant batch transaction

    • checkout_id: string
      required

      Checkout's ID

    • refund_id: string or null
      required

      Refund's ID

    • date_created: string<date-time>
      required

      When was the entry created?

    • amount: string<decimal>
      required

      The current value of order minus refunds

      Match pattern: ^-?\d{0,8}(?:\.\d{0,2})?$
    • order_reference: string
      required

      Generated or order reference provided during checkout creation

    • refund_reference: string or null
      required

      Reference provided during refund creation

Response example

{ "count": 123, "next": "http://api.example.org/accounts/?skip=400&limit=100", "previous": "http://api.example.org/accounts/?skip=200&limit=100", "items": [ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "type": "order", "destination_account_number": "string", "reference": "string", "checkout_id": "string", "refund_id": "string", "date_created": "string", "amount": "997.00", "order_reference": "string", "refund_reference": "string" } ] }