Introduction
Endpoint
Action name | get professions |
---|---|
HTTP path | /api/professions |
HTTP method | POST |
Attributes of the HTTP request
token | string | required | A security token provided from Authentication endpoint. |
---|
Attributes of the HTTP response
Success response | |||
---|---|---|---|
JSON array of objects containing: | |||
id | int | required | An unique identifier of the profession. |
name | string | required | A profession’s name. |
Failed response | |||
error | string | required | It contains a reason for the failed request. |
Examples
HTTP Request |
# HTTP POST # /api/professions # 'Content-Type': 'application/json' # 'Accept': 'application/json' { "token": "some long string value" } |
Successful HTTP Response |
# HTTP 200 status code # 'Content-Type': 'application/json' [ { "id": 1, "name": "Profession1" }, { "id": 2, "name": "Profession2" } ] |
Failed HTTP Response |
# HTTP 200 status code # 'Content-Type': 'application/json' { "error": "API User is not existing or deactivated." } |