APIs for VBASoftware
VBASoftware (v1)
- application/json
- text/json
- application/*+json
Unique identifier for the Security Field Set entry.
Type of Field access that is applied. Only two values: VIEW or VIEW_MASK. VIEW locks the field down but shows the information in the field. VIEW_MASK allow the field to be viewed only but also the information is masked.
Identifies the type of Mask applied to this feild. For now, only two values apply: SSN or ALL. SSN applies a standard mask of xxx-xx-9977 vs a mask of ALL which sets the field to ***** regardless of value being stored.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/security-field-sets/{SecurityFieldSet_ID}/fields/{SecurityField_ID}/details
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://vbapi.vbasoftware.com/vbasoftware/security-field-sets/{SecurityFieldSet_ID}/fields/{SecurityField_ID}/details' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"securityFieldSet_ID": "string",
"securityField_ID": "string",
"entry_Date": "2019-08-24T14:15:22Z",
"entry_User": "string",
"field_Access": "string",
"field_Mask": "string",
"update_Date": "2019-08-24T14:15:22Z",
"update_User": "string"
}'No response example- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/security-field-sets/{SecurityFieldSet_ID}/fields/{SecurityField_ID}/details
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi.vbasoftware.com/vbasoftware/security-field-sets/{SecurityFieldSet_ID}/fields/{SecurityField_ID}/details' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE'No response example- application/json
- text/json
- application/*+json
Unique identifier for the Security Field Set entry.
Type of Field access that is applied. Only two values: VIEW or VIEW_MASK. VIEW locks the field down but shows the information in the field. VIEW_MASK allow the field to be viewed only but also the information is masked.
Identifies the type of Mask applied to this feild. For now, only two values apply: SSN or ALL. SSN applies a standard mask of xxx-xx-9977 vs a mask of ALL which sets the field to ***** regardless of value being stored.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/security-field-sets/{SecurityFieldSet_ID}/fields/{SecurityField_ID}/details
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://vbapi.vbasoftware.com/vbasoftware/security-field-sets/{SecurityFieldSet_ID}/fields/{SecurityField_ID}/details' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"securityFieldSet_ID": "string",
"securityField_ID": "string",
"entry_Date": "2019-08-24T14:15:22Z",
"entry_User": "string",
"field_Access": "string",
"field_Mask": "string",
"update_Date": "2019-08-24T14:15:22Z",
"update_User": "string"
}'No response example