Skip to content

Get bulk pricing rules​

GET
/api/v2/events/{eventId}/bulk-pricing-rules

Returns a list of bulk pricing rules for an event

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event Id

Type
integer
Required
Format
"int64"

Responses​

Bulk pricing rule list

application/json
JSON
{
  
"count": 10,
  
"totalCount": 25,
  
"limit": 50,
  
"offset": 25,
  
"data": [
  
]
}

Playground​

Authorization
Variables
Key
Value

Samples​


Create a new bulk pricing rule​

POST
/api/v2/events/{eventId}/bulk-pricing-rules

Create bulk pricing rule

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event Id

Type
integer
Required
Format
"int64"

Request Body​

application/json
JSON
"string"

Responses​

Created bulk pricing rule object

application/json
JSON
{
  
"data": "string"
}

Playground​

Authorization
Variables
Key
Value
Body

Samples​


Get bulk pricing rule by ID​

GET
/api/v2/events/{eventId}/bulk-pricing-rules/{id}

Returns a single bulk pricing rule

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event Id

Type
integer
Required
Format
"int64"
id*

Bulk pricing rule Id

Type
integer
Required
Format
"int64"

Responses​

Bulk pricing rule object

application/json
JSON
{
  
"data": "string"
}

Playground​

Authorization
Variables
Key
Value

Samples​


Delete a bulk pricing rule​

DELETE
/api/v2/events/{eventId}/bulk-pricing-rules/{id}

Delete a bulk pricing rule

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event Id

Type
integer
Required
Format
"int64"
id*

Bulk pricing rule Id

Type
integer
Required
Format
"int64"

Responses​

Bulk pricing rule deleted successfully

Playground​

Authorization
Variables
Key
Value

Samples​


Update a bulk pricing rule​

PATCH
/api/v2/events/{eventId}/bulk-pricing-rules/{id}

Update an existing bulk pricing rule

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event Id

Type
integer
Required
Format
"int64"
id*

Bulk pricing rule Id

Type
integer
Required
Format
"int64"

Request Body​

application/json
JSON
"string"

Responses​

Updated bulk pricing rule object

application/json
JSON
{
  
"data": "string"
}

Playground​

Authorization
Variables
Key
Value
Body

Samples​


Powered by VitePress OpenAPI