Fetch the configuration data

GET /config

Fetch the configuration data, like timezone and supported countries for the current user.

Responses

  • 200

    The configuration data for the current user

    Hide response attributes Show response attributes array[object]
    • timezone string(datetime)
    • supported_countries array[string]
GET /config
curl \
 -X GET https://client-subdomain.bitbond.net/api/v1/config
Response examples (200)
[
  {
    "timezone": "string",
    "supported_countries": [
      "string"
    ]
  }
]
Response examples (200)
[
  {
    "timezone": "string",
    "supported_countries": [
      "string"
    ]
  }
]