GET /vendor/jobs/postings

This call returns a paginated list of all 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

Example request

curl -X GET "https://api.xing.com/vendor/jobs/postings.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": [
    { "id": 30675491,
      "type": "professional_plus",
      "function":"Technical Product Manager - Jobs Integration (m/w)",
      "state":"created",
      "company_name":"New Work SE",
      "company_profile_url":"https://www.xing.com/company/xing",
      "publish_to_company":true,
      "currency":"EUR",
      "description":"<!--XHS:1:JA:1--><p>Description of my job ad goes here</p><h3>Headline</h3><ul><li>List entry 1</li><li>List entry 2</li></ul>",
      "discipline_id_as_text":"Product Management",
      "discipline_id":1017,
      "industry_id_as_text":"Internet and IT",
      "industry_id":90000,
      "job_code":"YF112522",
      "job_type":"FULL_TIME",
      "language":"de",
      "level":"JOBLEVEL_3",
      "order_id":1022232,
      "organization_id":5160,
      "point_of_contact_type":"company",
      "poster_url":null,
      "posting_url":null,
      "public":true,
      "reply_email":null,
      "reply_setting":"url",
      "reply_url":"https://mytestcompany.com/jobs/apply/jobid-YF112522",
      "salary":null,
      "salary_range_start":null,
      "salary_range_end":null,
      "salary_interval":null,
      "skills":null,
      "student_classification_as_text":null,
      "student_classification":null,
      "tags":"hamburg, product manager, technical product",
      "tell_me_more":false,
      "user_role":"EMPLOYEE",
      "street":null,
      "city":"Hamburg",
      "region":"Hamburg",
      "country":"DE",
      "zipcode":"22085"
    }
  ]
}