Skip to Content

BuyerIdentityInput

Input for buyer identity information. This input type is used to provide buyer details in GraphQL mutations and queries.

Input Definition

input BuyerIdentityInput { email: String phone: String countryCode: String }

Fields

FieldTypeRequiredDescription
emailStringNoThe email address of the buyer
phoneStringNoThe phone number of the buyer
countryCodeStringNoThe country code for the buyer (ISO 3166-1 alpha-2)

Example

mutation { someMutation(input: { email: "buyer@example.com" phone: "+1-555-123-4567" countryCode: "US" }) { success } }

No related types specified.