Using the REST APIs
Riseact provides a set of REST 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 an Access Token, you can use the REST APIs to interact with Riseact resources. For more information, see the Riseact Resources page and the REST Pagination page.
Usage example
curl -H "Authorization: Bearer YOUR_ACCESS_TOKEN" https://core.riseact.com/api/v1/organization
The example above shows how to make a request to Riseact's REST APIs using the cURL command. You must replace "YOUR_ACCESS_TOKEN" with your actual Access Token obtained via OAuth. The URL "https://api.riseact.com/v1/resources" represents the endpoint of the Riseact resources you want to access.
You can customize the cURL request to your specific needs, specifying the appropriate parameters or using different methods such as POST, PUT, or DELETE.