Skip to main content

MarkEventInvoicesAsExportedInput

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

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

input MarkEventInvoicesAsExportedInput {
eventId: ID!
invoiceIds: [String!]!
}

Fields

MarkEventInvoicesAsExportedInput.eventId ● ID! non-null scalar

The identifier of the event the invoices associated with.

MarkEventInvoicesAsExportedInput.invoiceIds ● [String!]! non-null scalar

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

Member Of

markEventInvoicesAsExported mutation