PUT /vendor/jobs/postings/:id/activate

This call allows you to activate 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.

Example request

curl -X PUT "https://api.xing.com/vendor/jobs/postings/30675491/activate" \
-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

HTTP/1.1 204 No Content