merchantEshopCreate

POSThttps://api.twisto.pl/psp/v2/merchant/{merchantId}/eshop/

Create an e-shop for a specified merchant

Security: Token Auth

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

Path Parameters

Param nameTypeDescriptionRequiredDefault valuesMin/Max values
merchantIdstringMerchant identifiertrue

Request body

  • id: integer
    required

    Identifier

  • name: string
    required

    Name

    <= 50 characters
  • url: string<uri>
    required

    E-shop's website URL

    <= 255 characters
  • merchant_id: integer or null
    required

    Identifier of a linked merchant

  • external_id: string or null
    required

    External ID provided by PSP

    <= 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

  • services: array[object]
    • type: string
      required
      Allowed values: twisto-pay pay-in-three 
    • immediate_activation: boolean or null

      Order is activated immediately without waiting for a confirmation message. Overrides PaymentProcessor config.

Request Body example

{ "id": 140, "name": "string", "url": "http://api.example.org/accounts/?skip=400&limit=100", "merchant_id": 660, "external_id": "string", "mcc": 70, "is_blocked": false, "services": [ { "type": "twisto-pay", "immediate_activation": true } ] }

Responses

Body

  • id: integer
    required

    Identifier

  • name: string
    required

    Name

    <= 50 characters
  • url: string<uri>
    required

    E-shop's website URL

    <= 255 characters
  • merchant_id: integer or null
    required

    Identifier of a linked merchant

  • external_id: string or null
    required

    External ID provided by PSP

    <= 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

  • services: array[object]
    • type: string
      required
      Allowed values: twisto-pay pay-in-three 
    • immediate_activation: boolean or null

      Order is activated immediately without waiting for a confirmation message. Overrides PaymentProcessor config.

Response example

{ "id": 234, "name": "string", "url": "http://api.example.org/accounts/?skip=400&limit=100", "merchant_id": 15, "external_id": "string", "mcc": 38, "is_blocked": true, "services": [ { "type": "twisto-pay", "immediate_activation": false } ] }