{
"namespace": "string",
"targetType": "string",
"targetIdentifier": "string",
"resourceType": "string"
}
curl --location --request POST 'https://core.authing.cn/api/v2/acl/list-authorized-resources' \
--header 'Content-Type: application/json' \
--data-raw '{
"namespace": "string",
"targetType": "string",
"targetIdentifier": "string",
"resourceType": "string"
}'
{
"code": 200,
"message": "获取被授权的资源成功",
"data": {
"totalCount": 1,
"list": [
{
"code": "order:*",
"type": "DATA",
"actions": [
"order:read",
"order:delete"
],
"apiIdentifier": null
}
]
}
}