Edit User Role

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

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Body (OrganizationWhereUniqueInput object)

NameTypeDescription

id*

string

Organization ID

Example body:

{
  "where": {
    "id": "orgId123"
  }
}

Response

Returned values:

NameTypeDescription

id

string

Contact ID

fullName

string

Contact full name

email

string

Contact email

phone

string

Contract phone

{
	"data": {
		"organization": {
			"contacts": [
				{
					"id": "cljzumgy0000gk603zl8u9xx1",
					"name": "Georgia Hermann"
				},
				{
					"id": "cljzumh0n0019k603fzeaperq",
					"name": "Eugene Labadie"
				},
				{
					"id": "cljzumh2i0029k6039m3nmqvz",
					"name": "Wesley Hermann"
				},
				{
					"id": "cljzumh3i002rk603cho1skcx",
					"name": "Erma Dach MD"
				}
			]
		}
	}
}

Try it out!

Last updated