Authenticate as an app
You can authenticate as an ICR App in order to generate an installation access token or manage your app.
About authenticating as an ICR app
Using a JSON web token (JWT) to authenticate as an ICR app
curl --request GET \
--url "https://api.carbonregistry.com/app/installations" \
--header "Authorization: Bearer YOUR_JWT"await axios.get(
`https://api.carbonregistry/app/installations`,
{
headers: {
Authorization: `Bearer ${YOUR_JWT}`,
},
},
)Last updated