Services

Returns

Array of Object object

Response object child attributes


prod Boolean

Whether the delivery service is in production mode


name String

Name of the service provider


status Boolean

Whether the service provider is enabled for the account

``200 200

array of objects

object

prod

boolean

Defaults to true

name

string

status

boolean

Defaults to true

``400 400

Sample CURL Request

curl --request GET \
     --url https://api.shipday.com/on-demand/services \
     --header 'Accept: application/json' \
     --header 'Authorization: Basic BgxsDwd00n.LNNn90QydrjgZ1K9dS13' \
     --header 'Content-Type: application/json'

Sample JSON Response

[
  {
    "prod": false,
    "name": "DoorDash",
    "status": true
  }
]