Skip to main content

MarkEventPaymentsAsExportedInput

Defines the input for marking payments as exported in an event.

When a payment is marked as exported, the exportedAt field is populated with the current UTC date. This helps track processing of payments when integrated with another system.

input MarkEventPaymentsAsExportedInput {
eventId: ID!
paymentIds: [String!]!
}

Fields

MarkEventPaymentsAsExportedInput.eventId ● ID! non-null scalar

The identifier of the event the payments are associated with.

MarkEventPaymentsAsExportedInput.paymentIds ● [String!]! non-null scalar

The identifiers of the payments to mark as exported (maximum 2000 identifiers).

Member Of

markEventPaymentsAsExported mutation