Get Licenses
GET/api/v2/public/licenses
Returns an array of our Licenses. A licenseCode is required when using Quote Shift and Create Shifts endpoints.
Request
Query Parameters
facilityId stringrequired
Responses
- 201
- 401
- 403
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object[]
licenseCode stringrequired
Code of the License
licenseName stringrequired
Name of the License
{
"data": [
{
"licenseCode": "CNA",
"licenseName": "Certified Nursing Assistant"
}
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
message string
Error description
statusCode integer
Status code of the error
{
"message": "Unauthorized",
"statusCode": 401
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
message string
Error description
error string
The type of error
statusCode integer
Status code of the error
{
"message": "Forbidden Resource",
"error": "Forbidden",
"statusCode": 403
}
Loading...