Skip to main content

Contact

Contact is a person or entity that can be associated with a Wallet and has various identities

type Contact {
uuid: String!
name: String
email: String
phone: String
identities: Identity
wallet: Wallet
createdAt: Date!
updatedAt: Date!
}

Fields

Contact.uuid ● String! non-null scalar

UUID of the Contact

Contact.name ● String scalar

Name of the Contact

Contact.email ● String scalar

Email of the Contact

Contact.phone ● String scalar

Phone of the Contact

Contact.identities ● Identity object

Identities related to the Contact

Contact.wallet ● Wallet object

Wallet associated with the Contact

Contact.createdAt ● Date! non-null scalar

The creation date of the Contact

Contact.updatedAt ● Date! non-null scalar

The updated date of the Contact

Member Of

Account object ● CreateContactResponse object