GET /vendor/jobs/postings/status
This call returns a paginated list of all states for postings created by the current oAuth user.
Optional parameters |
|
---|---|
ids | Comma separated list of posting ids to filter the results for |
page | Pagination index. Default: 1 |
curl -X GET "https://api.xing.com/vendor/jobs/postings/status.json" \
-d "oauth_token=$ACCESS_TOKEN" \
-d "oauth_consumer_key=$CONSUMER_KEY" \
-d "oauth_signature_method=PLAINTEXT" \
-d "oauth_signature=$CONSUMER_SECRET%26$ACCESS_TOKEN_SECRET"
{
"total": 2,
"current_page": 1,
"total_pages": 1,
"collection": [
{
"id": 1,
"state": "state",
"visible": true,
"visible_errors": [],
"created_at": "2014-09-30T20:28:23Z",
"updated_at": "2014-09-30T20:29:23Z",
"activated_at": "2014-09-30T20:29:23Z",
"active_until": "2014-10-30T20:29:23Z"
},
{
"id": 2,
"state": "archived",
"visible": false,
"visible_errors": ["duplicated"],
"created_at": "2014-09-30T20:28:23Z",
"updated_at": "2014-09-30T20:29:23Z",
"activated_at": "2014-09-30T20:29:23Z",
"active_until": "2014-10-30T20:29:23Z"
}
]
}