Logo
Ats/Job offers/Id/Attributes

Create job offer attributes

Create new job offer attributes

POST/ats/job-offers/{id}/attributes
AuthorizationBearer <token>

In: header

Path Parameters

idnumber | null

Response Body

curl -X POST "https://api.dashboard.data-driven.fr/v3/ats/job-offers/0/attributes" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "name": "location",
      "value": "Paris"
    }
  ]'
{
  "message": "string"
}
{
  "message": "string",
  "data": [
    {
      "name": "location",
      "value": "Paris"
    }
  ]
}
{
  "message": "string",
  "data": [
    {
      "name": "location",
      "value": "Paris"
    }
  ],
  "errors": [
    {
      "message": "string",
      "data": null
    }
  ]
}
{
  "message": "string",
  "errors": [
    {
      "message": "string",
      "data": null
    }
  ]
}
{
  "message": "string",
  "errors": [
    {
      "message": "string",
      "data": null
    }
  ]
}