curl --request POST \
--url https://api.example.com/auth/refresh{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
Renova o access token expirado utilizando o refresh token persistido nos cookies.
curl --request POST \
--url https://api.example.com/auth/refresh{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}
ODocumentation Index
Fetch the complete documentation index at: https://docs.domsoftware.com.br/llms.txt
Use this file to discover all available pages before exploring further.
refreshToken deve estar presente no header Cookie (refreshToken=...).
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}