curl --location '/api/apps/oauth/token' \
--header 'Authorization;' \
--header 'Accept-Language;' \
--header 'Content-Type: application/json' \
--data '{
"grant_type": "authorization_code",
"client_id": "01923abc-...",
"client_secret": "senler_cs_...",
"project_id": "550e8400-e29b-41d4-a716-446655440000",
"scope": "can_view_leads can_manage_dialogs",
"refresh_token": "senler_rt_...",
"code": "senler_code_...",
"redirect_uri": "https://example.com"
}'{
"access_token": "string",
"token_type": "Bearer",
"expires_in": 31536000,
"refresh_token": "string",
"scope": "can_view_leads can_manage_dialogs"
}