Get API base Url

GET /platform/configuration/api_base_url

Gets the API base Url configuration value.

Responses

  • The API base Url was successfully retrieved

    Hide headers attributes Show headers attributes
    Hide response attribute Show response attribute object
    • value string Required

      The configured base Url

  • There is no configured API base value but optimistic locking was sent. (code: adminconsole.base_url.not_found)

    Hide headers attribute Show headers attribute
    • The error codes associated with the response

      Value is adminconsole.base_url.not_found.

    Hide response attribute Show response attribute object
    • errors array[object] Required

      A list of errors that occurred in the failing request

      Hide errors attributes Show errors attributes object
      • code string Required

        A structured code representing the error type that occurred

      • message string Required

        A human readable message describing the error that occurred

      • fields array[string]

        If the error can be tied to a specific field or fields in the user request, this lists those fields

  • The persisted Url is malformed. (code: adminconsole.base_url.invalid_persisted_data)

    Hide headers attribute Show headers attribute
    • The error codes associated with the response

      Value is adminconsole.base_url.invalid_persisted_data.

    Hide response attribute Show response attribute object
    • errors array[object] Required

      A list of errors that occurred in the failing request

      Hide errors attributes Show errors attributes object
      • code string Required

        A structured code representing the error type that occurred

      • message string Required

        A human readable message describing the error that occurred

      • fields array[string]

        If the error can be tied to a specific field or fields in the user request, this lists those fields

GET /platform/configuration/api_base_url
curl \
 -X GET https://{{hostname}}/api/v1/platform/configuration/api_base_url
Response examples (200)
# Headers
x-cloud-resource-version: string
x-cloud-resource-created: string
x-cloud-resource-last-modified: string

# Payload
{
  "value": "string"
}
Response examples (404)
# Headers
x-cloud-error-codes: adminconsole.base_url.not_found

# Payload
{
  "errors": [
    {
      "code": "string",
      "message": "string",
      "fields": [
        "string"
      ]
    }
  ]
}
Response examples (500)
# Headers
x-cloud-error-codes: adminconsole.base_url.invalid_persisted_data

# Payload
{
  "errors": [
    {
      "code": "string",
      "message": "string",
      "fields": [
        "string"
      ]
    }
  ]
}