APIs for VBASoftware
VBASoftware (v1)
- application/json
- text/json
- application/*+json
Key value identifying an attachment to a note Note: The database will apply a default value of 0 for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of 0 to meet the API requirements and ensure that the functionality occurs as expected.
Name of the file that has been uploaded as an attachment.
Path of the file that has been uploaded as an attachment.
Key value identifying the note that attachment is associated with Note: The database will apply a default value of 0 for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of 0 to meet the API requirements and ensure that the functionality occurs as expected.
- VBAPI VBASoftwarehttps://vbapi-dev.vbasoftware.com/vbasoftware/note-attachments
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://vbapi-dev.vbasoftware.com/vbasoftware/note-attachments \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"attachment_Key": 0,
"attachment": "string",
"attachment_File": "string",
"attachment_Path": "string",
"entry_Date": "2019-08-24T14:15:22Z",
"entry_User": "string",
"note_Key": 0,
"update_Date": "2019-08-24T14:15:22Z",
"update_User": "string"
}'No response example- VBAPI VBASoftwarehttps://vbapi-dev.vbasoftware.com/vbasoftware/note-data/{noteKey}/note-attachments
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi-dev.vbasoftware.com/vbasoftware/note-data/{noteKey}/note-attachments?page=1&pageSize=100&sortBy=string&includeAttachment=false' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE'No response example- VBAPI VBASoftwarehttps://vbapi-dev.vbasoftware.com/vbasoftware/note-attachments/{attachmentKey}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi-dev.vbasoftware.com/vbasoftware/note-attachments/{attachmentKey}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE'No response example