GET /vendor/jobs/orders

This call returns a paginated list of all orders for which the current oAuth user created postings.

Optional parameters

ids Comma separated list of order ids to filter the results for
page Pagination index. Default: 1
status Filter order status by this value. Possible values are:
  • active
  • unstarted
  • expired

Example request

curl -X GET "https://api.xing.com/vendor/jobs/orders.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"

Example response

{
  total: 1,
  current_page: 1,
  total_pages: 1,
  collection: [
    {
      "order_id": 1,
      "organization_id": 617,
      "kind": "Campus",
      "posting_amount_total": 2,
      "posting_amount_used": 1,
      "posting_duration": 90,
      "start_date": "2016-05-16",
      "end_date": "2016-11-17",
      "status": "active"
      }
  ]
}