Access Token
) using a (Refresh Token
). It is essential for maintaining long-term sessions and ensuring uninterrupted use of the API.curl --location --request PATCH '/v5/partner/transfer/agent/auth' \
--header 'Authorization: Bearer <refresh_token>'
{
"access_token": "new_access_token",
"refresh_token": "new_refresh_token",
"access_expire_at": "new_expiration_time",
"refresh_expire_at": "new_expiration_time"
}