APIs for VBASoftware
VBASoftware (v1)
- application/json
- text/json
- application/*+json
Security area that the User Group settings are being configured for.
ID of the User Group that the level is being set for. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Security level that is being applied to the selected User. Note: This field is marked as NOT NULL in the database and therefore required by the API.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/security-areas/{securityArea}/user-groups
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://vbapi.vbasoftware.com/vbasoftware/security-areas/{securityArea}/user-groups' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"security_Area": "string",
"userGroup_Key": 0,
"entry_Date": "2019-08-24T14:15:22Z",
"entry_User": "string",
"security_Level": 0,
"update_Date": "2019-08-24T14:15:22Z",
"update_User": "string"
}'No response example- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/security-areas/{securityArea}/user-groups
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi.vbasoftware.com/vbasoftware/security-areas/{securityArea}/user-groups?UserGroup_Key=0' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE'No response exampleRequest
Create or Update multiple SecurityAreaUserGroup records at once. If the entity exists, it will be updated; if it does not exist, it will be created. Please note: The Security_Area and UserGroup_Key fields represent the primary identifiers for these records and cannot be modified during an update. Ensure these values remain consistent with the original records when performing updates.
- application/json
- text/json
- application/*+json
Security area that the User Group settings are being configured for.
ID of the User Group that the level is being set for. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Security level that is being applied to the selected User. Note: This field is marked as NOT NULL in the database and therefore required by the API.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/security-areas/{securityArea}/user-groups
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://vbapi.vbasoftware.com/vbasoftware/security-areas/{securityArea}/user-groups' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '[
{
"security_Area": "string",
"userGroup_Key": 0,
"entry_Date": "2019-08-24T14:15:22Z",
"entry_User": "string",
"security_Level": 0,
"update_Date": "2019-08-24T14:15:22Z",
"update_User": "string"
}
]'No response example