Using the GraphQL APIs
Riseact provides a set of GraphQL APIs that allow developers to interact with Riseact resources. These APIs are available to all developers who have created an application on Riseact.
To use Riseact's GraphQL APIs, you first need to obtain an Access Token through the processes described on this page.
Once you have obtained a token, you can use the GraphQL APIs to interact with Riseact resources. For more information, see the Riseact Resources page and the GraphQL API reference page.
Usage example
curl 'https://core.riseact.org/admin/graphql/' \
-H 'authorization: Bearer <YOUR TOKEN>' \
--data-raw '{"query":"query Organization {\n organization {\n name\n domain\n }\n}","variables":{},"operationName":"Organization"}'