Skip to main content
GET
/
api
/
clients
/
current
cURL
curl --request GET \
  --url https://api.pricenow.dev/api/clients/current \
  --header 'accept-language: <accept-language>' \
  --header 'pratiq-channel-uuid: <pratiq-channel-uuid>'
{
  "data": {
    "id": 123,
    "name": "<string>",
    "supportEmail": "<string>",
    "supportPhone": "<string>",
    "currency": "<string>",
    "logoUrl": "<string>",
    "applicationUrl": "<string>",
    "localization": {
      "default": {
        "id": 123,
        "languageCode": "en",
        "localeCode": "en-US"
      },
      "additional": [
        {
          "id": 123,
          "languageCode": "en",
          "localeCode": "en-US"
        }
      ]
    },
    "payment": {
      "enableMarketplaceSplits": true,
      "supportedPaymentMethods": [
        "TWI"
      ],
      "supportedVoucherSystem": "<unknown>",
      "merchantId": "<string>",
      "googlePayMerchantId": "<string>",
      "enableGooglePay": true,
      "enableApplePay": true
    },
    "causeWeCare": {
      "proportion": "RELATIVE",
      "proportionAmount": 123
    },
    "preferredCountrySuggestions": [
      "<string>"
    ],
    "personFieldsDefinition": {},
    "loginProviders": [
      "GOOGLE"
    ]
  }
}

Headers

accept-language
enum<string>
required

Language of the response

Available options:
en,
de,
fr,
it
pratiq-channel-uuid
string
required

UUID of the sales channel

Response

200 - application/json

Successful response

data
object
required