curl --request POST \
--url https://api.revong.com/api/v1/resources \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"restricted": true,
"active": true,
"desc": "<string>",
"category": "<string>",
"type": "<string>",
"metaSchemaId": "<string>",
"groups": [
"<string>"
],
"users": [
"<string>"
],
"parentId": "<string>"
}
'ROLES: RESOURCE_WRITE,RESOURCE_ADMIN USER: true SERVICE ACCOUNT: true
curl --request POST \
--url https://api.revong.com/api/v1/resources \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"restricted": true,
"active": true,
"desc": "<string>",
"category": "<string>",
"type": "<string>",
"metaSchemaId": "<string>",
"groups": [
"<string>"
],
"users": [
"<string>"
],
"parentId": "<string>"
}
'Bearer token with Platform JWT token or API Key.
Name.
Provide if access should be restricted.
Provide if should be active/visible to users.
Description.
Category.
You can provide type of resource (view schema) [DATA,BIG_DATA,TABLE,BIG_TABLE].
You must set default schematic from schema.
Provide which groups should have access to it, once restricted is true.
Provide which users should have access to it, once restricted is true.
Provide if resource has parent resource.
OK.