# Create a list of actions and allocations for a line item Creates an ordered list of actions to be taken when a condition is met. Endpoint: POST /v1.0/instances/{instanceId}/line-items/{lineItemId}/actions Version: 1.0 Security: AdministrationAccess, ClientAccess ## Path parameters: - `instanceId` (string, required) The UUID of the Dynamic Monetization instance. - `lineItemId` (string, required) Line item ID. Note: This is also known as the activation ID. ## Request fields (application/json): - `name` (string) A human readable name to help a user identify the action. The same name may be re-used in other line items. - `conditionId` (string) The unique identifier of the condition that triggers this action. Required, unless defining a default action. Only one default action may be defined per line item. - `action` (string, required) The action to take when the condition is met. Enum: "ALLOW", "DENY" - `allocation` (number) The maximum number of tokens that may be consumed from the stated line item by requests satisfying the condition. Required for ALLOW, but may be omitted at most once per line item to create a default ALLOW action. Not used for DENY. Example: 1000 ## Response 200 fields (application/json): - `id` (string) A generated identifier to uniquely identify the action. - `name` (string) A human readable name to help a user identify the action. The same name may be re-used in other line items. - `conditionId` (string) The unique identifier of the condition that triggers this action. Required, unless defining a default action. Only one default action may be defined per line item. - `action` (string, required) The action to take when the condition is met. Enum: "ALLOW", "DENY" - `allocation` (number) The maximum number of tokens that may be consumed from the stated line item by requests satisfying the condition. Required for ALLOW, but may be omitted at most once per line item to create a default ALLOW action. Not used for DENY. Example: 1000 - `used` (number) The total count that has been consumed from the allocation by access requests. This field is only present for actions which have an allocation.