Shop

Shop operations for external integrations

Get Shop

get

Returns shop information for the authenticated user

Authorizations
Api-KeystringRequired

API key for authentication.

Responses
get
/shop

Get Shop Orders

get

Returns a list of shop orders sorted by ID descending (newest first)

Authorizations
Api-KeystringRequired

API key for authentication.

Responses
get
/shop/orders

Create Shop Order

post

Creates a new shop order and returns a payment URL for the customer.

Authorizations
Api-KeystringRequired

API key for authentication.

Body
amountinteger · int64Required

Order amount in smallest currency units (cents for EUR, kopecks for RUB)

Example: 100000
currencystring · enumRequired

Currency code (lowercase)

Example: rubPossible values:
titlestringRequired

Order title (required, max 100 UTF-16 characters)

Example: Product X
descriptionstringRequired

Order description (required, max 300 UTF-16 characters)

Example: Detailed product description
successUrlstring · uriOptional

Redirect URL on successful payment (optional)

Example: https://shop.com/success
failUrlstring · uriOptional

Redirect URL on failed payment (optional)

Example: https://shop.com/fail
emailstring · emailOptional

Customer email (optional, validated if provided)

Example: [email protected]
Responses
post
/shop/orders

Get Shop Order Status

get

Returns the current status of a specific shop order by its UUID. Only accessible by the shop owner.

Authorizations
Api-KeystringRequired

API key for authentication.

Path parameters
orderUuidstring · uuidRequired

Order UUID

Example: 550e8400-e29b-41d4-a716-446655440000
Responses
get
/shop/orders/{orderUuid}/status

Last updated