Get Choice

The Get Choice API retrieves a list of available choices from the application.

API Method

GET

Endpoint

https://cebuana-apiuat.veryfyglobal.com/enums/choice

Headers

Key
Value

Accept

application/json

Authorization

Bearer <YOUR_TOKEN>

Response Sample

{
    "message": "Ok",
    "data": [
        {
            "value": 0,
            "key": "No",
            "description": "No"
        },
        {
            "value": 1,
            "key": "Yes",
            "description": "Yes"
        }
    ]
}

Last updated