PickupPoint
Representation of a pickup point
type PickupPoint {
id: String!
name: String!
countryCode: String!
details: PickupPointDetails
service: String
}
Fields
id ● String!
The internal id of the pickup point
name ● String!
The name of the pickup point
countryCode ● String!
The country code of the pickup point
details ● PickupPointDetails
The details of the pickup point
service ● String
The service type of the shipping method (e.g. service_point_locator, home_delivery, merchant_curbside)
Example
{
"details": {
"openHours": [
{}
]
}
}