Retrieve configured application sources
To retrieve a list of application sources for a company, you’ll need to access the application sources endpoint. This endpoint returns a paginated list of sources, such as LinkedIn, Xing, Indeed etc., that are available for a company.
HTTP Method
GET
Path
/api/rest/v3/frontend/applicationSources
Authentication
Client Access Token or Basic Authorization
Query Parameters
page
: The page number of the results to retrievesize
: The number of items per page
Example call with cURL:
1 2 |
curl --location 'https://api.softgarden.io/api/rest/v3/frontend/applicationSources?page=0&size=100' \ --header 'Authorization: Bearer 31cb2exx-001e-4b59-babc-f0815tdad47d' |
Responses
Success
- Code:
200
- Description: Returns a paginated list of application sources.
- Payload:
1 2 3 4 5 6 7 8 9 10 11 12 |
{ "content": [ { "id": "string", "value": "string" } ], "totalElements": 0, "pageSize": 0, "currentPage": 0, "totalPages": 0 } |