PUT /vendor/jobs/postings/:id/deactivate
This call allows you to deactivate a posting in XING jobs. The GET parameter id
is supposed to be the
XING posting id of a posting you've created. The creation call returns this ID when successful.
curl -X PUT "https://api.xing.com/vendor/jobs/postings/30675491/deactivate" \
-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"
HTTP/1.1 204 No Content