Implements backend functions for Shipping area API Reference
undefined
API Endpoint
https://app.memberzone.org
Request Content-Types: application/json
Response Content-Types: application/json
Schemes: https
Version: v1.0
Paths
GET /api/shipping/shippingoptions
200 OK
OK
Response Example (200 OK)
[
{
"ShippingOptionId": "integer",
"Name": "string",
"Account": "string",
"IsActive": "boolean",
"Description": "string",
"Actions": "string"
}
]
GET /api/shipping/shippingoptions/{shippingoptionid}
shippingoptionid:
integer
in path
(no description)
200 OK
OK
Response Example (200 OK)
{
"ShippingOptionId": "integer",
"Name": "string",
"Description": "string",
"IsActive": "boolean",
"AccountId": "integer"
}
POST /api/shipping/shippingoptions/{shippingoptionid}
undefined
shippingoptionid:
integer
in path
(no description)
Request Example
{
"ShippingOptionId": "integer",
"Name": "string",
"Description": "string",
"IsActive": "boolean",
"AccountId": "integer"
}
200 OK
OK
Response Example (200 OK)
{
"ShippingOptionId": "integer",
"Name": "string",
"Account": "string",
"IsActive": "boolean",
"Description": "string",
"Actions": "string"
}
DELETE /api/shipping/shippingoptions/{shippingoptionid}
shippingoptionid:
integer
in path
(no description)
200 OK
OK
GET /api/shipping/shippingoptions/{shippingoptionid}/pricetiers
shippingoptionid:
integer
in path
(no description)
OK
Response Example (200 OK)
{
"ShippingOptionId": "integer",
"PriceFees": "string"
}
POST /api/shipping/shippingoptions/{shippingoptionid}/pricetiers
undefined
shippingoptionid:
integer
in path
(no description)
Request Example
{
"ShippingOptionId": "integer",
"PriceFees": "string"
}
200 OK
OK
GET /api/shipping/shippingpricetiers
200 OK
OK
Response Example (200 OK)
{
"PriceTiers": "string"
}
POST /api/shipping/shippingpricetiers
undefined
Request Example
{
"PriceTiers": "string"
}
200 OK
OK
Schema Definitions
ShippingOptionCollectionItem: object
- ShippingOptionId: integer
- Name: string
- Account: string
- IsActive: boolean
- Description: string
- Actions: string
Example
{
"ShippingOptionId": "integer",
"Name": "string",
"Account": "string",
"IsActive": "boolean",
"Description": "string",
"Actions": "string"
}
ShippingOptionAddEditModel: object
- ShippingOptionId: integer
- Name: string
- Description: string
- IsActive: boolean
- AccountId: integer
Example
{
"ShippingOptionId": "integer",
"Name": "string",
"Description": "string",
"IsActive": "boolean",
"AccountId": "integer"
}