Skip to main content
GET
/
v1
/
order_activities
List order activities
curl --request GET \
  --url https://api.ongoody.com/v1/order_activities \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "2f7fda94-5e06-42a4-b856-010a83afe76d",
      "order_status": "opened",
      "created_at": "2026-06-03T12:24:10Z",
      "order": {
        "id": "e3d4235a-9367-4bff-a0dd-a9339784cac2",
        "status": "opened",
        "individual_gift_link": "https://gifts.ongoody.com/gift/MAWESE8CCGYUEHZBDNFNH8V8",
        "recipient_first_name": "Recipient",
        "recipient_last_name": "Smith",
        "recipient_email": null,
        "card_id": "ffdb7f07-1d78-4e0c-ac3d-580394c9eea6",
        "message": "Test Message",
        "thank_you_note": null,
        "view_count_recipient": 0,
        "is_swapped": false,
        "order_batch_id": "93b36a7e-2de8-495c-8192-fc45be4c970e",
        "expires_at": null,
        "cart": {
          "id": "1d2b284b-9a88-4ea1-8b0b-1ca983d214c9",
          "items": [
            {
              "id": "9acd31ae-a9bd-43e4-9b7d-dd6ace754184",
              "quantity": 1,
              "product": {
                "id": "b55b1c75-d69a-42fd-a1d3-aaa881db000d",
                "name": "Cookies",
                "brand": {
                  "id": "c710da1e-18d0-46b2-93c1-7b91f93603c5",
                  "name": "Cookie Company"
                }
              }
            }
          ]
        },
        "shipments": [],
        "amounts": {
          "amount_product": 0,
          "amount_shipping": 0,
          "amount_processing_fee": 0,
          "amount_pre_tax_total": 0,
          "amount_tax": null,
          "amount_total": null,
          "amount_global_relay_cost": null
        },
        "sender": {
          "first_name": "Test",
          "last_name": "User",
          "email": "15554158553@test.ongoody.com"
        },
        "workspace_id": "7fb09027-7350-46bc-954a-ee9c2b4f5126",
        "workspace_name": "Test Team",
        "original_cart": null,
        "original_amounts": null,
        "reference_id": "DRKRUKB5XGWRB7VRKNZBWN5Q",
        "payment_link": null
      }
    },
    {
      "id": "542c1b8b-2819-44fd-a79b-a5e07018a7a8",
      "order_status": "created",
      "created_at": "2026-06-03T12:24:10Z",
      "order": {
        "id": "e3d4235a-9367-4bff-a0dd-a9339784cac2",
        "status": "opened",
        "individual_gift_link": "https://gifts.ongoody.com/gift/MAWESE8CCGYUEHZBDNFNH8V8",
        "recipient_first_name": "Recipient",
        "recipient_last_name": "Smith",
        "recipient_email": null,
        "card_id": "ffdb7f07-1d78-4e0c-ac3d-580394c9eea6",
        "message": "Test Message",
        "thank_you_note": null,
        "view_count_recipient": 0,
        "is_swapped": false,
        "order_batch_id": "93b36a7e-2de8-495c-8192-fc45be4c970e",
        "expires_at": null,
        "cart": {
          "id": "1d2b284b-9a88-4ea1-8b0b-1ca983d214c9",
          "items": [
            {
              "id": "9acd31ae-a9bd-43e4-9b7d-dd6ace754184",
              "quantity": 1,
              "product": {
                "id": "b55b1c75-d69a-42fd-a1d3-aaa881db000d",
                "name": "Cookies",
                "brand": {
                  "id": "c710da1e-18d0-46b2-93c1-7b91f93603c5",
                  "name": "Cookie Company"
                }
              }
            }
          ]
        },
        "shipments": [],
        "amounts": {
          "amount_product": 0,
          "amount_shipping": 0,
          "amount_processing_fee": 0,
          "amount_pre_tax_total": 0,
          "amount_tax": null,
          "amount_total": null,
          "amount_global_relay_cost": null
        },
        "sender": {
          "first_name": "Test",
          "last_name": "User",
          "email": "15554158553@test.ongoody.com"
        },
        "workspace_id": "7fb09027-7350-46bc-954a-ee9c2b4f5126",
        "workspace_name": "Test Team",
        "original_cart": null,
        "original_amounts": null,
        "reference_id": "DRKRUKB5XGWRB7VRKNZBWN5Q",
        "payment_link": null
      }
    }
  ],
  "list_meta": {
    "total_count": 2
  }
}

Authorizations

Authorization
string
header
required

Your Goody API key.

Query Parameters

page
integer
default:1

Page for pagination, starting at 1

Required range: x >= 1
per_page
integer
default:20

Items per page for pagination

Required range: 1 <= x <= 100
after
string<date-time> | null

ISO 8601

before
string<date-time> | null

ISO 8601

statuses
string | null

Comma-separated list of statuses to filter by (e.g. "created,opened,shipped")

Response

200 - application/json

Order activities retrieved

data
object[]
list_meta
object