Delivery

Get delivery items associated with an order

get

Retrieves all delivery items associated with a specific order.

Authorizations
AuthorizationstringRequired

An API Key token generated in the Dashboard in the format 'APIKey TOKEN_HERE'.

Path parameters
storeIdstring · flake-idRequired

The ID of the store.

Example: 411486491630370816
orderIdstring · flake-idRequired

The ID of the order to retrieve delivery items from.

Example: 411486491630370816
Responses
200

OK

application/json
get
/v1/stores/{storeId}/orders/{orderId}/delivery/items
GET /v1/stores/{storeId}/orders/{orderId}/delivery/items HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
[
  {
    "id": "411486491630370816",
    "store_id": "411486491630370816",
    "customer_id": "411486491630370816",
    "customer": {
      "id": "411486491630370816",
      "store_id": "411486491630370816",
      "profile": {
        "id": "text",
        "platform": "steam",
        "name": "text",
        "avatar_url": "text"
      },
      "steam_id": "76561197960287930",
      "steam": {
        "id": "76561197960287930",
        "name": "text",
        "avatar_url": "text"
      },
      "minecraft_uuid": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
      "minecraft": {
        "id": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
        "name": "notch",
        "avatar_url": "text"
      },
      "xbox_xuid": "text",
      "minecraft_platform": "unknown",
      "name": "m0uka",
      "created_at": "2025-11-19T15:32:25.929Z",
      "updated_at": "2025-11-19T15:32:25.929Z",
      "metadata": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      }
    },
    "order_customer_id": "411486491630370816",
    "order_customer": {
      "id": "411486491630370816",
      "store_id": "411486491630370816",
      "profile": {
        "id": "text",
        "platform": "steam",
        "name": "text",
        "avatar_url": "text"
      },
      "steam_id": "76561197960287930",
      "steam": {
        "id": "76561197960287930",
        "name": "text",
        "avatar_url": "text"
      },
      "minecraft_uuid": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
      "minecraft": {
        "id": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
        "name": "notch",
        "avatar_url": "text"
      },
      "xbox_xuid": "text",
      "minecraft_platform": "unknown",
      "name": "m0uka",
      "created_at": "2025-11-19T15:32:25.929Z",
      "updated_at": "2025-11-19T15:32:25.929Z",
      "metadata": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      }
    },
    "checkout_id": "411486491630370816",
    "checkout_line_id": "411486491630370816",
    "order_id": "411486491630370816",
    "order_line_id": "411486491630370816",
    "subscription_id": "411486491630370816",
    "trial_id": "411486491630370816",
    "execute_on_gameserver_id": "411486491630370816",
    "quantity_index": 1,
    "product": {
      "id": "411486491630370816",
      "name": "Premium Membership",
      "slug": "premium-membership",
      "version_id": "v2.1.0"
    },
    "state": "usable",
    "added_at": "2025-11-19T15:32:25.929Z",
    "added_by": {
      "type": "anonymous",
      "id": "411486491630370816"
    },
    "active_at": "2025-11-19T15:32:25.929Z",
    "expirable": true,
    "expires_at": "2025-11-19T15:32:25.929Z",
    "override_expires_at": "2025-11-19T15:32:25.929Z",
    "removed_at": "2025-11-19T15:32:25.929Z",
    "revoked_at": "2025-11-19T15:32:25.929Z",
    "revoke_reason": "text",
    "revoked_by": {
      "type": "anonymous",
      "id": "411486491630370816"
    },
    "command_attempts": [
      {
        "id": "411486491630370816",
        "store_id": "411486491630370816",
        "inventory_item_id": "411486491630370816",
        "gameserver_id": "411486491630370816",
        "steam_id": "76561197960287930",
        "minecraft_uuid": "text",
        "customer_name": "text",
        "customer_id": "411486491630370816",
        "command_stage": "text",
        "command": "text",
        "online_only": true,
        "rerun": true,
        "queued_at": "2025-11-19T15:32:25.929Z",
        "executed_at": "2025-11-19T15:32:25.929Z",
        "unqueued_at": "2025-11-19T15:32:25.929Z"
      }
    ],
    "skip_commands": true,
    "custom_variables": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    },
    "gift": true
  }
]

Assign delivery items in bulk

post

Allows you to assign multiple delivery items for multiple customers in bulk

Authorizations
AuthorizationstringRequired

An API Key token generated in the Dashboard in the format 'APIKey TOKEN_HERE'.

Path parameters
storeIdstring · flake-idRequiredExample: 411486491630370816
Bodyobject[]
customer_idstring · flake-idRequiredExample: 411486491630370816
product_version_idstring · flake-idOptionalExample: 411486491630370816
execute_on_gameserver_idstring · flake-idOptionalExample: 411486491630370816
quantityinteger · int32 | nullableOptional

Quantity of products to assign.

override_expires_atstring · date-time | nullableOptional

Override expiry date for the delivery item.

skip_commandsboolean | nullableOptional

Skip command execution when assigning the item.

Responses
200

OK

application/json
post
/v1/stores/{storeId}/delivery/items
POST /v1/stores/{storeId}/delivery/items HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 265

[
  {
    "customer_id": "411486491630370816",
    "product_version_id": "411486491630370816",
    "execute_on_gameserver_id": "411486491630370816",
    "quantity": 1,
    "override_expires_at": "2025-11-19T15:32:25.929Z",
    "skip_commands": true,
    "custom_variables": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    }
  }
]
[
  {
    "id": "411486491630370816",
    "store_id": "411486491630370816",
    "customer_id": "411486491630370816",
    "customer": {
      "id": "411486491630370816",
      "store_id": "411486491630370816",
      "profile": {
        "id": "text",
        "platform": "steam",
        "name": "text",
        "avatar_url": "text"
      },
      "steam_id": "76561197960287930",
      "steam": {
        "id": "76561197960287930",
        "name": "text",
        "avatar_url": "text"
      },
      "minecraft_uuid": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
      "minecraft": {
        "id": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
        "name": "notch",
        "avatar_url": "text"
      },
      "xbox_xuid": "text",
      "minecraft_platform": "unknown",
      "name": "m0uka",
      "created_at": "2025-11-19T15:32:25.929Z",
      "updated_at": "2025-11-19T15:32:25.929Z",
      "metadata": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      }
    },
    "order_customer_id": "411486491630370816",
    "order_customer": {
      "id": "411486491630370816",
      "store_id": "411486491630370816",
      "profile": {
        "id": "text",
        "platform": "steam",
        "name": "text",
        "avatar_url": "text"
      },
      "steam_id": "76561197960287930",
      "steam": {
        "id": "76561197960287930",
        "name": "text",
        "avatar_url": "text"
      },
      "minecraft_uuid": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
      "minecraft": {
        "id": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
        "name": "notch",
        "avatar_url": "text"
      },
      "xbox_xuid": "text",
      "minecraft_platform": "unknown",
      "name": "m0uka",
      "created_at": "2025-11-19T15:32:25.929Z",
      "updated_at": "2025-11-19T15:32:25.929Z",
      "metadata": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      }
    },
    "checkout_id": "411486491630370816",
    "checkout_line_id": "411486491630370816",
    "order_id": "411486491630370816",
    "order_line_id": "411486491630370816",
    "subscription_id": "411486491630370816",
    "trial_id": "411486491630370816",
    "execute_on_gameserver_id": "411486491630370816",
    "quantity_index": 1,
    "product": {
      "id": "411486491630370816",
      "name": "Premium Membership",
      "slug": "premium-membership",
      "version_id": "v2.1.0"
    },
    "state": "usable",
    "added_at": "2025-11-19T15:32:25.929Z",
    "added_by": {
      "type": "anonymous",
      "id": "411486491630370816"
    },
    "active_at": "2025-11-19T15:32:25.929Z",
    "expirable": true,
    "expires_at": "2025-11-19T15:32:25.929Z",
    "override_expires_at": "2025-11-19T15:32:25.929Z",
    "removed_at": "2025-11-19T15:32:25.929Z",
    "revoked_at": "2025-11-19T15:32:25.929Z",
    "revoke_reason": "text",
    "revoked_by": {
      "type": "anonymous",
      "id": "411486491630370816"
    },
    "command_attempts": [
      {
        "id": "411486491630370816",
        "store_id": "411486491630370816",
        "inventory_item_id": "411486491630370816",
        "gameserver_id": "411486491630370816",
        "steam_id": "76561197960287930",
        "minecraft_uuid": "text",
        "customer_name": "text",
        "customer_id": "411486491630370816",
        "command_stage": "text",
        "command": "text",
        "online_only": true,
        "rerun": true,
        "queued_at": "2025-11-19T15:32:25.929Z",
        "executed_at": "2025-11-19T15:32:25.929Z",
        "unqueued_at": "2025-11-19T15:32:25.929Z"
      }
    ],
    "skip_commands": true,
    "custom_variables": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    },
    "gift": true
  }
]

Unqueue commands by Attempt IDs

post
Authorizations
AuthorizationstringRequired

An API Key token generated in the Dashboard in the format 'APIKey TOKEN_HERE'.

Path parameters
storeIdstring · flake-idRequiredExample: 411486491630370816
Body
attempt_idsstring · flake-id[]RequiredExample: 411486491630370816
Responses
200

OK

application/json
post
/v1/stores/{storeId}/delivery/commands/unqueue
POST /v1/stores/{storeId}/delivery/commands/unqueue HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 38

{
  "attempt_ids": [
    "411486491630370816"
  ]
}
{
  "unqueued_count": 1
}

Update product version id for delivery items of given product id

post
Authorizations
AuthorizationstringRequired

An API Key token generated in the Dashboard in the format 'APIKey TOKEN_HERE'.

Path parameters
storeIdstring · flake-idRequiredExample: 411486491630370816
Body
product_version_idstring · flake-idRequiredExample: 411486491630370816
product_idstring · flake-idRequiredExample: 411486491630370816
Responses
200

OK

application/json
post
/v1/stores/{storeId}/delivery/items/update-product-versions
POST /v1/stores/{storeId}/delivery/items/update-product-versions HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 77

{
  "product_version_id": "411486491630370816",
  "product_id": "411486491630370816"
}
{
  "product_version_id": "411486491630370816",
  "product_id": "411486491630370816"
}

Get delivery items associated with a customer

get

Retrieves delivery items associated with a customer

Authorizations
AuthorizationstringRequired

An API Key token generated in the Dashboard in the format 'APIKey TOKEN_HERE'.

Path parameters
storeIdstring · flake-idRequiredExample: 411486491630370816
customerIdstring · flake-idRequiredExample: 411486491630370816
Query parameters
limitinteger · int32 · min: 1 · max: 100Optional

The maximum number of items to return in a single request.

afterstring · flake-idOptional

Returns items after the specified ID. Used for forward pagination through results.

Example: 411486491630370816
beforestring · flake-idOptional

Returns items before the specified ID. Used for backward pagination through results.

Example: 411486491630370816
ascbooleanOptional

Determines the sort order of returned items. When true, items are returned in ascending order. When false, items are returned in descending order.

Responses
200

OK

application/json
get
/v1/stores/{storeId}/customers/{customerId}/delivery/items
GET /v1/stores/{storeId}/customers/{customerId}/delivery/items HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
[
  {
    "id": "411486491630370816",
    "store_id": "411486491630370816",
    "customer_id": "411486491630370816",
    "customer": {
      "id": "411486491630370816",
      "store_id": "411486491630370816",
      "profile": {
        "id": "text",
        "platform": "steam",
        "name": "text",
        "avatar_url": "text"
      },
      "steam_id": "76561197960287930",
      "steam": {
        "id": "76561197960287930",
        "name": "text",
        "avatar_url": "text"
      },
      "minecraft_uuid": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
      "minecraft": {
        "id": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
        "name": "notch",
        "avatar_url": "text"
      },
      "xbox_xuid": "text",
      "minecraft_platform": "unknown",
      "name": "m0uka",
      "created_at": "2025-11-19T15:32:25.929Z",
      "updated_at": "2025-11-19T15:32:25.929Z",
      "metadata": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      }
    },
    "order_customer_id": "411486491630370816",
    "order_customer": {
      "id": "411486491630370816",
      "store_id": "411486491630370816",
      "profile": {
        "id": "text",
        "platform": "steam",
        "name": "text",
        "avatar_url": "text"
      },
      "steam_id": "76561197960287930",
      "steam": {
        "id": "76561197960287930",
        "name": "text",
        "avatar_url": "text"
      },
      "minecraft_uuid": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
      "minecraft": {
        "id": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
        "name": "notch",
        "avatar_url": "text"
      },
      "xbox_xuid": "text",
      "minecraft_platform": "unknown",
      "name": "m0uka",
      "created_at": "2025-11-19T15:32:25.929Z",
      "updated_at": "2025-11-19T15:32:25.929Z",
      "metadata": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      }
    },
    "checkout_id": "411486491630370816",
    "checkout_line_id": "411486491630370816",
    "order_id": "411486491630370816",
    "order_line_id": "411486491630370816",
    "subscription_id": "411486491630370816",
    "trial_id": "411486491630370816",
    "execute_on_gameserver_id": "411486491630370816",
    "quantity_index": 1,
    "product": {
      "id": "411486491630370816",
      "name": "Premium Membership",
      "slug": "premium-membership",
      "version_id": "v2.1.0"
    },
    "state": "usable",
    "added_at": "2025-11-19T15:32:25.929Z",
    "added_by": {
      "type": "anonymous",
      "id": "411486491630370816"
    },
    "active_at": "2025-11-19T15:32:25.929Z",
    "expirable": true,
    "expires_at": "2025-11-19T15:32:25.929Z",
    "override_expires_at": "2025-11-19T15:32:25.929Z",
    "removed_at": "2025-11-19T15:32:25.929Z",
    "revoked_at": "2025-11-19T15:32:25.929Z",
    "revoke_reason": "text",
    "revoked_by": {
      "type": "anonymous",
      "id": "411486491630370816"
    },
    "command_attempts": [
      {
        "id": "411486491630370816",
        "store_id": "411486491630370816",
        "inventory_item_id": "411486491630370816",
        "gameserver_id": "411486491630370816",
        "steam_id": "76561197960287930",
        "minecraft_uuid": "text",
        "customer_name": "text",
        "customer_id": "411486491630370816",
        "command_stage": "text",
        "command": "text",
        "online_only": true,
        "rerun": true,
        "queued_at": "2025-11-19T15:32:25.929Z",
        "executed_at": "2025-11-19T15:32:25.929Z",
        "unqueued_at": "2025-11-19T15:32:25.929Z"
      }
    ],
    "skip_commands": true,
    "custom_variables": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    },
    "gift": true
  }
]

Assign a delivery item to a customer

post

Allows you to assign a delivery item to a customer

Authorizations
AuthorizationstringRequired

An API Key token generated in the Dashboard in the format 'APIKey TOKEN_HERE'.

Path parameters
storeIdstring · flake-idRequiredExample: 411486491630370816
customerIdstring · flake-idRequiredExample: 411486491630370816
Body
product_idstring · flake-idOptionalExample: 411486491630370816
product_version_idstring · flake-idOptionalExample: 411486491630370816
execute_on_gameserver_idstring · flake-idOptionalExample: 411486491630370816
quantityinteger · int32 | nullableOptional

Quantity of products to assign.

override_expires_atstring · date-time | nullableOptional

Override expiry date for the delivery item.

skip_commandsboolean | nullableOptional

Skip command execution when assigning the item.

Responses
200

OK

application/json
post
/v1/stores/{storeId}/customers/{customerId}/delivery/items
POST /v1/stores/{storeId}/customers/{customerId}/delivery/items HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 262

{
  "product_id": "411486491630370816",
  "product_version_id": "411486491630370816",
  "execute_on_gameserver_id": "411486491630370816",
  "quantity": 1,
  "override_expires_at": "2025-11-19T15:32:25.929Z",
  "skip_commands": true,
  "custom_variables": {
    "ANY_ADDITIONAL_PROPERTY": "text"
  }
}
[
  {
    "id": "411486491630370816",
    "store_id": "411486491630370816",
    "customer_id": "411486491630370816",
    "customer": {
      "id": "411486491630370816",
      "store_id": "411486491630370816",
      "profile": {
        "id": "text",
        "platform": "steam",
        "name": "text",
        "avatar_url": "text"
      },
      "steam_id": "76561197960287930",
      "steam": {
        "id": "76561197960287930",
        "name": "text",
        "avatar_url": "text"
      },
      "minecraft_uuid": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
      "minecraft": {
        "id": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
        "name": "notch",
        "avatar_url": "text"
      },
      "xbox_xuid": "text",
      "minecraft_platform": "unknown",
      "name": "m0uka",
      "created_at": "2025-11-19T15:32:25.929Z",
      "updated_at": "2025-11-19T15:32:25.929Z",
      "metadata": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      }
    },
    "order_customer_id": "411486491630370816",
    "order_customer": {
      "id": "411486491630370816",
      "store_id": "411486491630370816",
      "profile": {
        "id": "text",
        "platform": "steam",
        "name": "text",
        "avatar_url": "text"
      },
      "steam_id": "76561197960287930",
      "steam": {
        "id": "76561197960287930",
        "name": "text",
        "avatar_url": "text"
      },
      "minecraft_uuid": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
      "minecraft": {
        "id": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
        "name": "notch",
        "avatar_url": "text"
      },
      "xbox_xuid": "text",
      "minecraft_platform": "unknown",
      "name": "m0uka",
      "created_at": "2025-11-19T15:32:25.929Z",
      "updated_at": "2025-11-19T15:32:25.929Z",
      "metadata": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      }
    },
    "checkout_id": "411486491630370816",
    "checkout_line_id": "411486491630370816",
    "order_id": "411486491630370816",
    "order_line_id": "411486491630370816",
    "subscription_id": "411486491630370816",
    "trial_id": "411486491630370816",
    "execute_on_gameserver_id": "411486491630370816",
    "quantity_index": 1,
    "product": {
      "id": "411486491630370816",
      "name": "Premium Membership",
      "slug": "premium-membership",
      "version_id": "v2.1.0"
    },
    "state": "usable",
    "added_at": "2025-11-19T15:32:25.929Z",
    "added_by": {
      "type": "anonymous",
      "id": "411486491630370816"
    },
    "active_at": "2025-11-19T15:32:25.929Z",
    "expirable": true,
    "expires_at": "2025-11-19T15:32:25.929Z",
    "override_expires_at": "2025-11-19T15:32:25.929Z",
    "removed_at": "2025-11-19T15:32:25.929Z",
    "revoked_at": "2025-11-19T15:32:25.929Z",
    "revoke_reason": "text",
    "revoked_by": {
      "type": "anonymous",
      "id": "411486491630370816"
    },
    "command_attempts": [
      {
        "id": "411486491630370816",
        "store_id": "411486491630370816",
        "inventory_item_id": "411486491630370816",
        "gameserver_id": "411486491630370816",
        "steam_id": "76561197960287930",
        "minecraft_uuid": "text",
        "customer_name": "text",
        "customer_id": "411486491630370816",
        "command_stage": "text",
        "command": "text",
        "online_only": true,
        "rerun": true,
        "queued_at": "2025-11-19T15:32:25.929Z",
        "executed_at": "2025-11-19T15:32:25.929Z",
        "unqueued_at": "2025-11-19T15:32:25.929Z"
      }
    ],
    "skip_commands": true,
    "custom_variables": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    },
    "gift": true
  }
]

Revoke a delivery item from a customer

delete

Allows you to revoke a delivery item associated with a customer

Authorizations
AuthorizationstringRequired

An API Key token generated in the Dashboard in the format 'APIKey TOKEN_HERE'.

Path parameters
storeIdstring · flake-idRequiredExample: 411486491630370816
customerIdstring · flake-idRequiredExample: 411486491630370816
deliveryItemIdstring · flake-idRequiredExample: 411486491630370816
Responses
delete
/v1/stores/{storeId}/customers/{customerId}/delivery/items/{deliveryItemId}
DELETE /v1/stores/{storeId}/customers/{customerId}/delivery/items/{deliveryItemId} HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*

No content

Get command attempts associated with a customer

get

Retrieves command attempts associated with a customer

Authorizations
AuthorizationstringRequired

An API Key token generated in the Dashboard in the format 'APIKey TOKEN_HERE'.

Path parameters
storeIdstring · flake-idRequiredExample: 411486491630370816
customerIdstring · flake-idRequiredExample: 411486491630370816
Query parameters
limitinteger · int32 · min: 1 · max: 100Optional

The maximum number of items to return in a single request.

afterstring · flake-idOptional

Returns items after the specified ID. Used for forward pagination through results.

Example: 411486491630370816
beforestring · flake-idOptional

Returns items before the specified ID. Used for backward pagination through results.

Example: 411486491630370816
ascbooleanOptional

Determines the sort order of returned items. When true, items are returned in ascending order. When false, items are returned in descending order.

Responses
200

OK

application/json
get
/v1/stores/{storeId}/customers/{customerId}/delivery/commands
GET /v1/stores/{storeId}/customers/{customerId}/delivery/commands HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
[
  {
    "id": "411486491630370816",
    "store_id": "411486491630370816",
    "inventory_item_id": "411486491630370816",
    "gameserver_id": "411486491630370816",
    "steam_id": "76561197960287930",
    "minecraft_uuid": "text",
    "customer_name": "text",
    "customer_id": "411486491630370816",
    "command_stage": "text",
    "command": "text",
    "online_only": true,
    "rerun": true,
    "queued_at": "2025-11-19T15:32:25.929Z",
    "executed_at": "2025-11-19T15:32:25.929Z",
    "unqueued_at": "2025-11-19T15:32:25.929Z"
  }
]

Resend commands for a given Gameserver

post
Authorizations
AuthorizationstringRequired

An API Key token generated in the Dashboard in the format 'APIKey TOKEN_HERE'.

Path parameters
storeIdstring · flake-idRequiredExample: 411486491630370816
gameServerIdstring · flake-idRequiredExample: 411486491630370816
Body
starts_atstring · date-time | nullableOptional
ends_atstring · date-time | nullableOptional
inventory_item_idstring · flake-idOptionalExample: 411486491630370816
customer_idstring · flake-idOptionalExample: 411486491630370816
order_idstring · flake-idOptionalExample: 411486491630370816
product_idstring · flake-idOptionalExample: 411486491630370816
subscription_idstring · flake-idOptionalExample: 411486491630370816
Responses
200

OK

application/json
post
/v1/stores/{storeId}/gameservers/{gameServerId}/delivery/commands/resend
POST /v1/stores/{storeId}/gameservers/{gameServerId}/delivery/commands/resend HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 258

{
  "starts_at": "2025-11-19T15:32:25.929Z",
  "ends_at": "2025-11-19T15:32:25.929Z",
  "inventory_item_id": "411486491630370816",
  "customer_id": "411486491630370816",
  "order_id": "411486491630370816",
  "product_id": "411486491630370816",
  "subscription_id": "411486491630370816"
}
{
  "enqueued_commands_count": 1
}

Last updated

Was this helpful?