Since July 1st, 2023, the new field discipline_id is available in API and feed interface. With this field, you can specify the discipline that the job listing belongs to.
In the XING job market, users can use the corresponding filter to display job listings in a targeted manner.
What values can the field have?
One of the following values can be used for a job:
- 1001: ANALYSIS_AND_STATISTICS
- 1002: ADMINISTRATION
- 1003: CONSULTING
- 1004: CUSTOMER_SERVICE
- 1005: PURCHASING_MATERIALS_MANAGEMENT_AND_LOGISTICS
- 1006: FINANCE_ACCOUNTING_AND_CONTROLLING
- 1007: TEACHING_R_AND_D
- 1008: HEALTH_MEDICAL_AND_SOCIAL
- 1009: GRAPHIC_DESIGN_AND_ARCHITECTURE
- 1010: ENGINEERING_AND_TECHNICAL
- 1011: IT_AND_SOFTWARE_DEVELOPMENT
- 1012: MANAGEMENT_AND_CORPORATE_DEVELOPMENT
- 1013: MARKETING_AND_ADVERTISING
- 1014: HR
- 1015: PR_AND_JOURNALISM
- 1016: PRODUCTION_AND_MANUFACTURING
- 1017: PRODUCT_MANAGEMENT
- 1018: PROJECT_MANAGEMENT
- 1019: PROCESS_PLANNING_AND_QA
- 1020: LAW
- 1021: SALES_AND_COMMERCE
- 1022: OTHER_DISCIPLINES
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>
[…]
<discipline_id>1001</ discipline_id>
</posting>
[...]
</postings>
</feed>
For general information about the feed structure, please refer to the documentation.
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 '{
[…]
"discipline_id": "1001",
}'
For general information about the API integration, please refer to the documentation.
If you have any further questions, please feel free to contact us at techsupport@xing.com.