MerchantList

GEThttps://api.twisto.cz/psp/v4/merchants
GEThttps://api.twisto.pl/psp/v4/merchants

Get a list of merchants.

Security: Bearer Auth

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

Query Parameters

Param nameTypeDescriptionRequiredDefault valuesMin/Max values
isBlockedbooleanFilter blocked merchantsfalse
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: integer
      required
    • name: string
      required
      <= 50 characters
    • url: string<uri>
      required
      <= 255 characters
    • mcc: integer or null

      MCC code used by PSP

      >= 0 <= 2147483647
    • is_blocked: boolean
      required

      True if and only if e-shop is blocked from performing new orders

    • contact_name: string
      required
    • contact_email: string<email>
      required
    • contact_phone_number: string
      required
    • reference: string
      required
    • pl_krs: string
    • street: string
      required
      <= 100 characters
    • city: string
      required
      <= 100 characters
    • zipcode: string
      required
      <= 5 characters
    • company_id: string
      required
      <= 20 characters
    • vat_id: string or null
      <= 14 characters

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": 553, "name": "string", "url": "http://api.example.org/accounts/?skip=400&limit=100", "mcc": 475, "is_blocked": true, "contact_name": "string", "contact_email": "string", "contact_phone_number": "string", "reference": "string", "pl_krs": "string", "street": "string", "city": "string", "zipcode": "strin", "company_id": "string", "vat_id": "string" } ] }