Skip to content

List All Delivery Methods

GET
/delivery_methods

List all available delivery methods.

page_size
integer
default: 1

Amount of results

Example
25
page
integer
default: 1

Page to show

Example
1

OK

Array<object>
object
id

ID of this delivery method.

number
cost

The cost to ship orders with this delivery method.

string
name

The name of the delivery method.

string
user_id

ID of the user who created the delivery method.

number
created_at

The date and time when the delivery method was created.

string
updated_at

The date and time when the delivery method was last updated.

string
Example
[
{
"id": 123456,
"cost": "0.0",
"name": "Default delivery method",
"user_id": 23005,
"created_at": "2017-07-04T09:40:37.535Z",
"updated_at": "2017-07-04T09:40:37.535Z"
},
{
"id": 123457,
"cost": "2.0",
"name": "Delivery Method #2",
"user_id": 23005,
"created_at": "2017-08-24T12:32:51.118Z",
"updated_at": "2017-08-24T12:32:51.118Z"
},
{
"id": 123458,
"cost": "3.0",
"name": "Delivery Method #3",
"user_id": 23005,
"created_at": "2017-08-24T12:33:04.763Z",
"updated_at": "2017-08-24T12:33:04.763Z"
}
]