As of May 25, 2023, the new field "Remote Options" is available in API and feed. This field allows you to specify whether the job listing is for a remote position. On the XING Job Market, job seekers can use the "Remote" filter to specifically view remote job listings.
What values can this field have?
One or more of the following values can be used for a job listing:
- FULLY_REMOTE
- PARTIALLY_REMOTE
- NON_REMOTE
A job ad can also take two values, for instance, if you want to advertise a position for a Product Manager as fully remote or partially remote.
Below are examples for the respective interfaces:
Feed
<?xml version="1.0"?>
<feed xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance xsi:schemaLocation="https://dev.xing.com/jobs/xsd">
<postings>
<posting>
[…]
<remote_options>
<remote_option>FULLY_REMOTE</remote_option>
<remote_option>PARTIALLY_REMOTE</remote_option>
</remote_options>
</posting>
[…]
</postings>
</feed>
For general information about the feed structure, please refer to the documentation: https://dev.xing.com/partners/job_integration/feed_docs
API
curl -X POST "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" \
-d '{
[…]
"remote_options": {
"remote_option”: “FULLY_REMOTE”,
"remote_option”: “PARTIALLY_REMOTE”,
}
}'
For general information about API integration, please refer to the documentation https://dev.xing.com/partners/job_integration/api_docs
For any further questions, please don't hesitate to contact us at techsupport@xing.com.