Skip to main content
GET
/
v1
/
staff
/
{id}
Get staff by ID
curl --request GET \
  --url http://localhost:3000/v1/staff/{id}
{
  "staff": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "taxonomy_id": "<string>",
    "email": "jsmith@example.com",
    "first_name": "<string>",
    "last_name": "<string>",
    "phone": "<string>",
    "pin": "<string>",
    "is_active": true,
    "is_service_account": true,
    "deputy_employee_id": 123,
    "operational_units": [
      "<string>"
    ],
    "role_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "role": "warehouse",
    "role_description": "<string>"
  }
}

Path Parameters

id
string
required

Staff UUID or taxonomy ID

Response

Staff member details

staff
object
required