Universal Auth
Renew Access Token
Overview
- Introduction
- Authentication
- Examples
Endpoints
- Identities
- Universal Auth
- Organizations
- Projects
- Project Users
- Project Identities
- Project Roles
- Environments
- Folders
- Secret Tags
- Secrets
- Secret Imports
- Identity Specific Privilege
- Integrations
- Service Tokens
- Audit Logs
- Certificate Authorities
- Certificates
Universal Auth
Renew Access Token
Renew access token
POST
/
api
/
v1
/
auth
/
token
/
renew
curl --request POST \
--url https://app.infisical.com/api/v1/auth/token/renew \
--header 'Content-Type: application/json' \
--data '{
"accessToken": "<string>"
}'
{
"accessToken": "<string>",
"expiresIn": 123,
"accessTokenMaxTTL": 123,
"tokenType": "Bearer"
}
Body
application/json
Response
200 - application/json
Default Response
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://app.infisical.com/api/v1/auth/token/renew \
--header 'Content-Type: application/json' \
--data '{
"accessToken": "<string>"
}'
{
"accessToken": "<string>",
"expiresIn": 123,
"accessTokenMaxTTL": 123,
"tokenType": "Bearer"
}