Get Allowed Durations

Use this API to get allowed durations for bounce tickets.

API

/selfservice/v1/customers/services/products/bounce/durations

Scope and AuthZ

  • You must have mcs:oci:api:User scope to access this API.
  • You can use Bounce Metadata API only if customer has opted-in for Bounce functionality.

Headers

  • Authorization: Bearer <Token>

    Where <Token> is the OAUTH token returned by the Authorization Server (JWT Token).

  • Identifier: <JWKS Identifier>

    Where <JWKS Identifier> is the GUID generated when JWKS URI is set by customer admin in self-service platform.

Base Path

/selfservice/v1/

Functionality

  • This API exposes list of allowed bounce operations.
  • displayValue is the value used for display purposes.
  • value is the value considered for processing.

Verb

GET

Sample response

[
  {
    "displayValue": "2 hours",
    "value": "PT2H"
  },
  {
    "displayValue": "2 hours 30 minutes",
    "value": "PT2H30M"
  },
  {
    "displayValue": "3 hours",
    "value": "PT3H"
  },
  {
    "displayValue": "4 hours",
    "value": "PT4H"
  },
  ...
]