Skip to main content
POST
/
v1.0
/
packages
/
items
/
add
Creates a new Package Item
curl --request POST \
  --url https://api.example.com/v1.0/packages/items/add \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "PackageId": "<string>",
  "ProductId": "<string>",
  "AggregatorId": "<string>",
  "DistributorId": "<string>",
  "Type": "<string>",
  "Price": 123,
  "Monthly": true,
  "Active": true
}
'

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Obtain token from /v1.0/OAuth2/tokens endpoint.

Body

Package_Item object

PackageId
string | null
ProductId
string | null
AggregatorId
string | null
DistributorId
string | null
Type
string | null
Price
number<double>
Monthly
boolean
Active
boolean

Response

200

Success