Get Specialties
GET/api/v2/public/facilities/specialties
Returns an array of specialties. A specialty title is required when using the Request Facility Creation endpoint.
Request
Responses
- 201
- 401
- 403
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object[]
title stringrequired
Title of the Specialty
description stringrequired
Description of the Specialty
{
"data": [
{
"title": "Oncology",
"description": "Oncology travel nurses work mostly with patients who are undergoing cancer treatments or are in remission"
}
]
}
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...