Get refresh token
This API is used to get refresh token, you need to re-authorize OA for the application (app). Then call API "Connect OA".
Request:
curl --location '$BASE_URL.Zalo/RefreshToken' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer $API_KEY' \
--data '{
"oa_id": "int64"
}'
Response
{
"url": "string"
}
Request body structure
Parameters
Data type
Describe
id
int64
OA ID
Return data attribute structure
Parameters
Data type
Describe
url
string
OA authorization link for app
Last updated