List Pickup Address
DevelopingGET
/api/v1/public/users/pickup-address/listLast modified: 4 months ago
Request
Query Params
page
string
optional
Example:
1
page_size
string
optional
Example:
5
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
status_code
integer
required
data
array [object {24}]
optional
id
integer
required
user
integer
required
business
integer
required
country
string
required
platform
null
required
is_default
boolean
required
is_active
boolean
required
fulfillment_provider
string
required
warehouse_provider
string
required
pickup_name
string
required
contact_name
string
required
phone
string
required
address
string
required
lat
integer
required
lng
integer
required
zipcode
null
required
province
object
required
district
object
required
ward
object
required
pickup_code
string
required
fulfillment_provider_name
string
required
warehouse_provider_name
string | null
required
is_fulfill_self
boolean
required
is_fulfill_3pf
boolean
required
error
boolean
optional
error_code
null
optional
log_id
null
optional
messages
string | null
optional
total
integer | null
optional
Example
{
"status_code": 0,
"data": [
{
"id": 0,
"user": 0,
"business": 0,
"country": "string",
"platform": null,
"is_default": true,
"is_active": true,
"fulfillment_provider": "string",
"warehouse_provider": "string",
"pickup_name": "string",
"contact_name": "string",
"phone": "string",
"address": "string",
"lat": 0,
"lng": 0,
"zipcode": null,
"province": {
"id": 0,
"country": "string",
"code": "string",
"province_name": "string"
},
"district": {
"id": 0,
"country": "string",
"province_id": 0,
"district_name": "string"
},
"ward": {
"id": 0,
"province_id": 0,
"district_id": 0,
"country": "string",
"ward_name": "string"
},
"pickup_code": "string",
"fulfillment_provider_name": "string",
"warehouse_provider_name": "string",
"is_fulfill_self": true,
"is_fulfill_3pf": true
}
],
"error": true,
"error_code": null,
"log_id": null,
"messages": "string",
"total": 0
}
Last modified: 4 months ago