Organization Contacts

Retrieve all contacts in an organization, per organization ID.

Fetch Organization Contacts

By performing this query, you can retreive any/all organization's contacts. (per organization ID)

query Organization($where: OrganizationWhereUniqueInput!) {
  organization(where: $where) {
    contacts {
      id
      fullName
      email
      phone
    }
  }
}

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body (OrganizationWhereUniqueInput object)

Name
Type
Description

id*

string

Organization ID

Example body:

Response

Returned values:

Name
Type
Description

id

string

Contact ID

fullName

string

Contact full name

email

string

Contact email

phone

string

Contract phone

Try it out!

Was this helpful?