GET /options

Retrieve all custom options for a given company.

Query parameters

  • companyID integer Required

Responses

  • 200 application/json

    List of custom options

    Hide response attributes Show response attributes object
    • id integer
    • optionTypeID integer
    • value string
    • description string
    • companyID integer
    • createdBy integer
    • updatedBy integer
  • 500

    Error occurred while retrieving options

GET /options
curl \
 -X GET http://api.example.com/options?companyID=42
Response examples (200)
[
  {
    "id": 42,
    "optionTypeID": 42,
    "value": "string",
    "description": "string",
    "companyID": 42,
    "createdBy": 42,
    "updatedBy": 42
  }
]