eshopPartialUpdate
Update some values of an existing e-shop specified by its identifier
Security: Token Auth
Provide your auth token in the Authorization header when making requests to protected resources.
Example: Authorization: Token 123
Path Parameters
| Param name | Type | Description | Required | Default values | Min/Max values | 
|---|---|---|---|---|---|
| eshopId | string | E-shop identifier | true | 
Request body
- id: integer
Identifier
 - name: string
Name
<= 50 characters - url: string<uri>
E-shop's website URL
<= 255 characters - merchant_id: integer or null
Identifier of a linked merchant
 - external_id: string or null
External ID provided by PSP
<= 255 characters - mcc: integer or null
MCC code used by PSP
>= 0<= 2147483647 - is_blocked: boolean
True if and only if e-shop is blocked from performing new orders
 - services: array[object]
- type: stringrequiredAllowed values:
twisto-paypay-in-three - immediate_activation: boolean or null
Order is activated immediately without waiting for a confirmation message. Overrides PaymentProcessor config.
 
 
Request Body example
{
  "id": 290,
  "name": "string",
  "url": "http://api.example.org/accounts/?skip=400&limit=100",
  "merchant_id": 162,
  "external_id": "string",
  "mcc": 989,
  "is_blocked": true,
  "services": [
    {
      "type": "twisto-pay",
      "immediate_activation": false
    }
  ]
}Responses
Body
- id: integerrequired
Identifier
 - name: stringrequired
Name
<= 50 characters - url: string<uri>required
E-shop's website URL
<= 255 characters - merchant_id: integer or nullrequired
Identifier of a linked merchant
 - external_id: string or nullrequired
External ID provided by PSP
<= 255 characters - mcc: integer or null
MCC code used by PSP
>= 0<= 2147483647 - is_blocked: booleanrequired
True if and only if e-shop is blocked from performing new orders
 - services: array[object]
- type: stringrequiredAllowed values:
twisto-paypay-in-three - immediate_activation: boolean or null
Order is activated immediately without waiting for a confirmation message. Overrides PaymentProcessor config.
 
 
Response example
{
  "id": 841,
  "name": "string",
  "url": "http://api.example.org/accounts/?skip=400&limit=100",
  "merchant_id": 302,
  "external_id": "string",
  "mcc": 93,
  "is_blocked": true,
  "services": [
    {
      "type": "twisto-pay",
      "immediate_activation": false
    }
  ]
}