Create Account limit


                https://api.ocamba.com/v2/adex/accounts/{id}/limits
            

Creates a new Account limit object


Name
Description
account_idstringrequired
Unique account identifier defined as a path parameter.


Example: 12345

Name
Description
itemstringrequired
Depends on the field type. Represents the subtype of account limit. If type is "budget" allowed values are income and expense. If type is "frequency" allowed values are: impressions, clicks and conversions.


Example: income

Possible values: income | expense | impressions | clicks | conversions

periodstringrequired
Describe the period of the limit.


Example: day

Possible values: hour | day | month

typestringrequired
Represent the type of the account limit.


Example: budget

Possible values: budget | frequency

valueintegerrequired
Value of the upper limit.


Example: 123
tip
1 If you don't know the account id, list the accounts to find it.

2 Limits can be set as of Finance or Frequency type.
frequency-type-limit Arrow
{
  "type":"frequency",
  "item":"clicks",
  "period":"day",
  "value": 120
}
{
  "type":"budget",
  "item":"income",
  "period":"day",
  "value": 161
}
201 Arrow
{
  "id": "2084",
  "company_id": "1234543",
  "account_id": "16274541",
  "type": "frequency",
  "item": "clicks",
  "period": "day",
  "value": 120
}