Skip to main content
GET
/
positions
Get Positions
curl --request GET \
  --url https://access.utgl.io/v1/positions \
  --header 'Authorization: Basic <encoded-value>'
{
  "positions": [
    {
      "id": "1",
      "position": "Company Owner"
    },
    {
      "id": "2",
      "position": "Executive or Senior Management"
    },
    {
      "id": "3",
      "position": "Manager"
    },
    {
      "id": "4",
      "position": "No Position"
    },
    {
      "id": "5",
      "position": "Officer or Junior Staff"
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json

Retrieve a list of Positions

positions
object[]