Skip to main content

Querying organization

organization returns your board's own record. There's no argument — the organization ID comes from your JWT.

This query requires a JWT — get one from the homepage first. The API key needs the organization:read scope.

Get organization basic information

query organization {
organization {
id
name
vatNumber
address
zipCode
city
contactEmail
contactPhoneNumber
creationDate
}
}

logo is a BlobFile. Project metadata for cheap, request base64 only when you actually need to download the bytes (it's marked with cost 50 — the server caps total query cost so excessive base64 projection across nested entities will be rejected).

query organizationLogo {
organization {
id
name
logo {
id
fileName
fileExtension
url
}
}
}

When you actually want the bytes:

query organizationLogoDownload {
organization {
logo {
fileName
fileExtension
base64
}
}
}