Skip to content

Get event shipping methods​

GET
/api/v2/events/{eventId}/shipping-methods

Returns a list of shipping methods assigned to the given event, including event-specific settings such as shipping cutoff.

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event ID

Type
integer
Required
Format
"int64"

Responses​

Paginated list of event shipping methods

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

Playground​

Authorization
Variables
Key
Value

Samples​


Update event shipping method settings​

PATCH
/api/v2/events/{eventId}/shipping-methods/{id}

Update event-specific shipping method settings (e.g. shipping cutoff)

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event ID

Type
integer
Required
Format
"int64"
id*

Shipping Method ID

Type
integer
Required
Format
"int64"

Request Body​

application/json
JSON
"string"

Responses​

Updated event shipping method

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

Playground​

Authorization
Variables
Key
Value
Body

Samples​


Bulk update event shipping method settings​

PATCH
/api/v2/events/{eventId}/shipping-methods/bulk-update

Update event-specific shipping method settings (e.g. shipping cutoff) for multiple shipping methods.

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

eventId*

Event ID

Type
integer
Required
Format
"int64"

Request Body​

application/json
JSON
"string"

Responses​

Updated event shipping methods

application/json
JSON
{
  
"data": [
  
]
}

Playground​

Authorization
Variables
Key
Value
Body

Samples​


Powered by VitePress OpenAPI