INPUT_OBJECT

RefundRequestFilters

Attributes for filtering refund requests

link GraphQL Schema definition

  • input RefundRequestFilters {
  • # Refund request with matching marketplacer database ID
  • legacyId: Int
  • # Refund request with invoice id matching marketplacer database ID
  • invoiceLegacyId: Int
  • # Refund requests that are linked with a buyer name containing this value
  • buyerName: String
  • # Refund requests that are linked with a buyer email address containing this value
  • buyerEmailAddress: String
  • # Refund requests that are linked with this seller business name
  • businessName: String
  • # Refund requests with one of these statuses
  • statuses: [RefundRequestStatusEnum!]
  • # Refund requests with ANY line item with one of these statuses
  • lineItemStatuses: [RefundRequestLineItemStatusEnum!]
  • # Refund requests for invoices paid on this date
  • invoicePaidAt: ISO8601Date
  • # Refund requests created since this time
  • createdSince: ISO8601DateTime
  • # Refund requests created until this time
  • createdUntil: ISO8601DateTime
  • # Refund requests refunded since this time
  • refundedSince: ISO8601DateTime
  • # Refund requests refunded until this time
  • refundedUntil: ISO8601DateTime
  • # Refund requests for remitted invoices
  • remitted: Boolean
  • }