curl -H "X-API-KEY: your_api_key" \
"https://www.gomry.com/api/v1/payments?event_id=EVENT_ID&from=2025-01-01"
{
"data": [
{
"id": "<string>",
"status": {},
"currency": {},
"gross_amount": {},
"net_amount": {},
"service_fee": {},
"total_discount": {},
"quantity": {},
"event_id": {},
"product_id": {},
"form_id": {},
"contact_user_id": {},
"customer_email": {},
"application_id": {},
"promo_code": {},
"billing_reason": {},
"stripe_payment_id": {},
"created_at": {},
"updated_at": {}
}
]
}Payments
List Payments
List payments for your organization
GET
/
payments
curl -H "X-API-KEY: your_api_key" \
"https://www.gomry.com/api/v1/payments?event_id=EVENT_ID&from=2025-01-01"
{
"data": [
{
"id": "<string>",
"status": {},
"currency": {},
"gross_amount": {},
"net_amount": {},
"service_fee": {},
"total_discount": {},
"quantity": {},
"event_id": {},
"product_id": {},
"form_id": {},
"contact_user_id": {},
"customer_email": {},
"application_id": {},
"promo_code": {},
"billing_reason": {},
"stripe_payment_id": {},
"created_at": {},
"updated_at": {}
}
]
}List Payments
Returns a paginated list of payments. Defaults to statussucceeded — pass status to include other states.
Required scope: payments:read
Query Parameters
integer
default:"1"
integer
default:"50"
Maximum:
200.string
default:"succeeded"
Comma-separated. Allowed:
succeeded, pending, refunded, failed, checkout_started, authorized, authorization_expired.string
string
string
string
ISO 8601 timestamp. Returns payments created on or after this time.
string
ISO 8601 timestamp. Returns payments created on or before this time.
Response
array
Show Payment object
Show Payment object
string
string | null
string | null
ISO 4217
number | null
In the smallest currency unit (e.g. cents)
number | null
number | null
number | null
number | null
string | null
string | null
string | null
string | null
User ID of the customer
string | null
string | null
Linked form submission, if any
string | null
string | null
e.g.
subscription_create, one_time_paymentstring | null
For joining with Stripe-side records
string | null
string | null
curl -H "X-API-KEY: your_api_key" \
"https://www.gomry.com/api/v1/payments?event_id=EVENT_ID&from=2025-01-01"

