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": "24563a39-1777-40e8-83a1-8c69b83e87ef",
      "order_status": "opened",
      "created_at": "2025-12-30T00:50:35Z",
      "order": {
        "id": "fa4e96be-f284-443c-af33-31233e5e95bf",
        "status": "opened",
        "individual_gift_link": "https://gifts.ongoody.com/gift/C92T4J6JZ1C3A6SYI8GWRZGA",
        "recipient_first_name": "Recipient",
        "recipient_last_name": "Smith",
        "recipient_email": null,
        "card_id": "08f333ee-a328-4132-bc7f-e3289a61e3fc",
        "message": "Test Message",
        "thank_you_note": null,
        "view_count_recipient": 0,
        "is_swapped": false,
        "order_batch_id": "6057b3f7-46bd-4566-b6f1-15488fbf602f",
        "expires_at": null,
        "cart": {
          "id": "5352bc17-0138-4bab-86b9-0e95fe516e64",
          "items": [
            {
              "id": "a3d698a7-0e76-4390-ae62-b929930a2c65",
              "quantity": 1,
              "product": {
                "id": "dd711af7-e15b-4428-81ff-5fe6638f5214",
                "name": "Cookies",
                "brand": {
                  "id": "0fa62b84-e199-45ab-9828-27a133b5f7ad",
                  "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": "[email protected]"
        },
        "workspace_id": "80c8d8cf-8bc0-4122-8305-1540e1efd1ba",
        "workspace_name": "Test Team",
        "original_cart": null,
        "original_amounts": null,
        "reference_id": "1KE2YJISFM9N5CMWZDGUBRVO",
        "payment_link": null
      }
    },
    {
      "id": "fe70eef1-7f26-4259-bd58-5a2c070ff961",
      "order_status": "created",
      "created_at": "2025-12-30T00:50:35Z",
      "order": {
        "id": "fa4e96be-f284-443c-af33-31233e5e95bf",
        "status": "opened",
        "individual_gift_link": "https://gifts.ongoody.com/gift/C92T4J6JZ1C3A6SYI8GWRZGA",
        "recipient_first_name": "Recipient",
        "recipient_last_name": "Smith",
        "recipient_email": null,
        "card_id": "08f333ee-a328-4132-bc7f-e3289a61e3fc",
        "message": "Test Message",
        "thank_you_note": null,
        "view_count_recipient": 0,
        "is_swapped": false,
        "order_batch_id": "6057b3f7-46bd-4566-b6f1-15488fbf602f",
        "expires_at": null,
        "cart": {
          "id": "5352bc17-0138-4bab-86b9-0e95fe516e64",
          "items": [
            {
              "id": "a3d698a7-0e76-4390-ae62-b929930a2c65",
              "quantity": 1,
              "product": {
                "id": "dd711af7-e15b-4428-81ff-5fe6638f5214",
                "name": "Cookies",
                "brand": {
                  "id": "0fa62b84-e199-45ab-9828-27a133b5f7ad",
                  "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": "[email protected]"
        },
        "workspace_id": "80c8d8cf-8bc0-4122-8305-1540e1efd1ba",
        "workspace_name": "Test Team",
        "original_cart": null,
        "original_amounts": null,
        "reference_id": "1KE2YJISFM9N5CMWZDGUBRVO",
        "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