# Order

Ordering is where you'll be able to create an ordering interaction with a certain customer or view orders from a certain customer. This is great for apps that offer an in-venue ordering system and you'll be able to send this data to Stampede including the transactional data.

## Get guest orders

<mark style="color:blue;">`GET`</mark> `v1/guests/:guest_id/order`

#### Query Parameters

| Name   | Type   | Description |
| ------ | ------ | ----------- |
| limit  | Number |             |
| cursor | String |             |
| search | String |             |

{% tabs %}
{% tab title="200: OK " %}

{% endtab %}
{% endtabs %}

## Create an order

<mark style="color:green;">`POST`</mark> `v1/guests/:guest_id/order`

#### Request Body

| Name                                     | Type      | Description                                                |
| ---------------------------------------- | --------- | ---------------------------------------------------------- |
| amount<mark style="color:red;">\*</mark> | Number    | Transaction amount in currencies lowest common denominator |
| currency                                 | ISO 4217  |                                                            |
| venue\_ids                               | String\[] |                                                            |
| event\_id                                | String    |                                                            |
| in\_venue                                | Boolean   |                                                            |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.stampede.ai/guests/order.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
