GET /v1/orders/family-options

Family options for custom order

Responses

  • 200 application/json

    Options for Family dropdown

    Hide response attribute Show response attribute object
    • data array[object] Required
      Hide data attributes Show data attributes object
      • label string Required
      • description string Required
      • value string Required
  • 403 application/json

    Not authorized

    Hide response attributes Show response attributes object

    Error schema

    • statusCode number Required

      Status Code

    • messages array[string] Required

      List of error messages

    • exception object

      Exception

GET /v1/orders/family-options
curl \
 --request GET 'https://localhost/v1/orders/family-options'
Response examples (200)
{
  "data": [
    {
      "label": "string",
      "description": "string",
      "value": "string"
    }
  ]
}
Response examples (403)
{
  "statusCode": 42.0,
  "messages": [
    "string"
  ],
  "exception": {}
}