Skip to main content

UpdateSponsorshipStatusInput

Defines the input for updating a sponsorship's status.

input UpdateSponsorshipStatusInput {
confirmationDate: LocalDate
contactId: ID!
eventId: ID!
payingContactId: ID
paymentStatus: PaymentStatusInput!
sponsorshipId: ID!
status: SponsorshipStatusInput!
}

Fields

UpdateSponsorshipStatusInput.confirmationDate ● LocalDate scalar

The date the sponsorship was confirmed. Optional.

Will only be set when status set to CONFIRMED.

UpdateSponsorshipStatusInput.contactId ● ID! non-null scalar

The identifier of the contact.

UpdateSponsorshipStatusInput.eventId ● ID! non-null scalar

The identifier of the event.

UpdateSponsorshipStatusInput.payingContactId ● ID scalar

The identifier of the contact who pays for the item. Optional. If specified the paying contact must be different from the contact who owns the item and the record's payment status must be CHARGE_TO_ANOTHER_CONTACT or CANCELED_CHARGE_TO_ANOTHER_CONTACT.

UpdateSponsorshipStatusInput.paymentStatus ● PaymentStatusInput! non-null enum

The new payment status for the sponsorship.

UpdateSponsorshipStatusInput.sponsorshipId ● ID! non-null scalar

The identifier of the sponsorship.

UpdateSponsorshipStatusInput.status ● SponsorshipStatusInput! non-null enum

The new status of the sponsorship.

Member Of

updateSponsorshipStatus mutation