Skip to Content

BuyerIdentityInput

Input for buyer identity information. Use this type to provide structured buyer details in 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: "+14155552671" countryCode: "US" }) { success } }

No related types documented.