Description
Enables you to get all specified configuration entries.
Request
GET https://api.smartrecruiters.com/v1/configs
Path Parameters
n/a
Query Parameters
n/a
Request Body
n/a
Response Body
ListResult containing list of Config objects
Example request
curl -i -H "X-SmartToken: abc123" -X GET https://api.smartrecruiters.com/v1/configs
Example response
{ "limit": 100, "offset": 0, "totalFound": 3, "content": [ { "id": "notificationUrl", "value": "http://api.partnercompany.com/notifications" }, { "id": "defaultGetLimit", "value": "40" }, { "id": "baseUrl", "value": "http://api.partnercompany.com/base" } ] } |