GET
/
v1
/
options_group
curl --request GET \
  --url https://api.sandbox.usenash.com/v1/options_group
[
  {
    "id": "opn_WyMhHj",
    "label": "New York City Strategy",
    "allowedProviders": [
      "prv_01234567890",
      "prv_01234567891"
    ],
    "enableAutoDispatch": true,
    "providerSelectionStrategy": "cheapest",
    "reassignOnFailure": true,
    "enableMaxDeliveryFee": true,
    "maxDeliveryFeeCents": 10000,
    "costSplitMaxFixedPriceCents": 10000,
    "costSplitMaxPercentage": 0.1,
    "costSplitStrategy": "price",
    "smartReassignment": true
  }
]

Response

200 - application/json
OK
id
string
required

Dispatch Strategy ID

Example:

"opn_WyMhHj"

label
string
required

Dispatch Strategy Label

Example:

"New York City Strategy"

allowedProviders
string[] | null

Allowed providers

Example:
["prv_01234567890", "prv_01234567891"]
enableAutoDispatch
boolean | null

Enable auto dispatch

Example:

true

providerSelectionStrategy
string | null

Provider selection strategy

Example:

"cheapest"

reassignOnFailure
boolean | null

Reassign on failure

Example:

true

enableMaxDeliveryFee
boolean | null

Enable max delivery fee

Example:

true

maxDeliveryFeeCents
integer | null

Max delivery fee in cents

Example:

10000

costSplitMaxFixedPriceCents
integer | null

Cost split max fixed price in cents

Example:

10000

costSplitMaxPercentage
number | null

Cost split max percentage

Example:

0.1

costSplitStrategy
string | null

Cost split strategy

Example:

"price"

smartReassignment
boolean | null

Smart reassignment

Example:

true