Product

List products - client mode

Only the client needs to be logged in to use this endpoint. The user does not need to be logged in, click here to read more.

SecurityClient_Credentials
Request
query Parameters
productId
string <= 12 characters

Only return info about one product

shop
boolean
Default: false

Informs if a product is available for web shop.

  • true: The product is available for web shop.
  • false: The product is unavailable for web shop.
Responses
200

OK

Response Schema: application/json
Array of objects
400

Bad Request

429

Too Many Requests

500

Internal Server Error

get/v1/client/product
Request samples
Response samples
application/json
{
  • "products": [
    ]
}

Check product - client mode

Only the client needs to be logged in to use this endpoint. The user does not need to be logged in, click here to read more.

SecurityClient_Credentials
Request
query Parameters
shop
boolean
Default: false

Informs if a product is available for web shop.

  • true: The product is available for web shop.
  • false: The product is unavailable for web shop.
Request Body schema: application/json
changedAfter
integer

Only get products changed after this time

onlyActive
boolean

Only get active products (time now is between startTime and endTime).

Responses
200

OK

Response Schema: application/json
Array of objects
400

Bad Request

429

Too Many Requests

500

Internal Server Error

post/v1/client/product
Request samples
application/json
{
  • "changedAfter": 1550336440000,
  • "onlyActive": true
}
Response samples
application/json
{
  • "products": [
    ]
}

List specific products - client mode

Only the client needs to be logged in to use this endpoint. The user does not need to be logged in, click here to read more.

SecurityClient_Credentials
Request
path Parameters
productType
required
string <= 12 characters

Possible value: subscription.

query Parameters
productId
string <= 12 characters

Only return info about one product

shop
boolean
Default: false

Informs if a product is available for web shop.

  • true: The product is available for web shop.
  • false: The product is unavailable for web shop.
Responses
200

OK

Response Schema: application/json
Array of objects
400

Bad Request

429

Too Many Requests

500

Internal Server Error

get/v1/client/product/{productType}
Request samples
Response samples
application/json
{
  • "products": [
    ]
}