Organization
Your board's own record. There's a single organization per JWT — the one your API key was provisioned for — and the organization query returns it without any arguments.
Fields
id— UUID; the organization ID baked into your JWT.name— the board's display name.vatNumber— the registered VAT/CVR number.address,zipCode,city— postal address.contactEmail,contactPhoneNumber— primary contact for the organization.logo— aBlobFile(see below) holding the organization's logo image.creationDate— when the organization record was created in the platform.
There are no mutations on the organization itself — name, contact info, and branding are managed in the Unioo platform UI, not via this API.
BlobFile
logo (and any other file field on the schema, like images on events) is exposed as a BlobFile with these fields:
id— file ID.url— direct URL to the file (when public; otherwise blank).fileName— the filename without path.fileExtension— extension without the leading dot (e.g.png).base64— the file contents Base64-encoded. Expensive — only project this when you actually need the bytes. Skip it for metadata-only renders.
organization {
logo {
fileName
fileExtension
# base64 # only when downloading
}
}
Where to query
- Read: Querying organization.