Skip to main content
PUT
/
companies
/
{companyId}
/
employees
/
{employeeId}
/
limits
Set employee limits
curl --request PUT \
  --url https://pre-public-api.cobee.io/api/v3/companies/{companyId}/employees/{employeeId}/limits \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "meal": {
    "amount": {
      "amountInCents": 123,
      "currency": "<string>"
    }
  },
  "transport": {
    "amount": {
      "amountInCents": 123,
      "currency": "<string>"
    }
  },
  "nursery": {
    "amount": {
      "amountInCents": 123,
      "currency": "<string>"
    }
  }
}'
This response does not have an example.

Overview

This endpoint allows you to set the employee limits for all the benefits defined by the partner, such as meals, transport and nurseries.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

companyId
string<uuid>
required

The company identifier

employeeId
string<uuid>
required

The employee identifier

Body

application/json
meal
object
transport
object
nursery
object

Response

Limits successfully set