Understand your general resources
Last updated
Last updated
The Certn Group of companies includes Certn, Credence & InterCheck. For educational purposes, these companies are referred to as “Certn” in this website. For questions about any of the aforementioned companies, contact support@certn.co. ©2023 Certn.
You'll need to know how to Get your access token before you can follow the instructions in this section.
When you're set up within Certn, you belong to an organization. This organization has a few levels of hierarchy:
Superteams can have multiple Teams and Teams can have multiple Users. When you're added to Certn, you're linked to a Team, which is linked to a Superteam.
You'll need an Authorization header with a valid Bearer token. This token is your access token you retrieved according to Get your access token.
Replace access_token
with your API access token:
In the beginning, you'll be the only User in your organizational account. Let's retrieve your users by making a GET request to our /users/
endpoint.
In this example, we saved the results of the call to a new file named user_list.json
.
With everything set properly and a good internet connection, you should receive a response status of 200 OK
.
200 OK
{
[...]
"results": [
{
"id": "string<uuid>",
[...]
},
]
}
Errors are a relatively common occurrence when working with APIs. It's always good to know how to prevent them and what to do when they arise.
See Error Codes for details on types of errors and how to resolve them.
Error codesIn the user_list.json
file, you should see one user listed in the results: it's you! Look for the id
field for your User, and copy that value. We use universally unique identifiers (UUIDs) for ids, so it'll be formatted like this:123e4567-e89b-12d3-a456-426614174000.
You'll need this to Create your first application.
For more details on the structure of the User list response, see .