https://docs.bndry.net/_mock/apis/openapi/
https://api.bndry.app/
Optional. The maximum number of notes to return. The service may return fewer than this value. If unspecified, at most 50 notes will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
Optional. A page token, received from a previous call. Provide this to retrieve the subsequent page.
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/notes
https://api.bndry.app/v1alpha/entities/{entity}/notes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/notes?pageSize=50&pageToken=CiAKGjBpNDd2Nmp2Zml2cXRwYjBpOXA&skip=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "notes": [ { … } ], "nextPageToken": "string", "totalSize": 0 }
Required. The note to create.
(IDENTIFIER) The resource name of the note. Format: entities/{entity}/notes/{note} or workspaces/{workspace}/notes/{note}
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/notes
https://api.bndry.app/v1alpha/entities/{entity}/notes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/notes?noteId=note-20240315-compliance-review' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "entities/customer-acme-corp/notes/note-20240315-compliance-review",
"content": "Customer completed KYC verification. All documents reviewed and approved. Credit score: 750. Ready for loan processing.",
"createTime": "1s",
"updateTime": "1s"
}'
{ "name": "entities/customer-acme-corp/notes/note-20240315-compliance-review", "content": "Customer completed KYC verification. All documents reviewed and approved. Credit score: 750. Ready for loan processing.", "authorId": "user-sarah-johnson", "author": "Sarah Johnson", "createTime": "1s", "updateTime": "1s", "isEdited": true }
Optional. The maximum number of notes to return. The service may return fewer than this value. If unspecified, at most 50 notes will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
Optional. A page token, received from a previous call. Provide this to retrieve the subsequent page.
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/workspaces/{workspace}/notes
https://api.bndry.app/v1alpha/workspaces/{workspace}/notes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/workspaces/{workspace}/notes?pageSize=50&pageToken=CiAKGjBpNDd2Nmp2Zml2cXRwYjBpOXA&skip=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "notes": [ { … } ], "nextPageToken": "string", "totalSize": 0 }
Required. The note to create.
(IDENTIFIER) The resource name of the note. Format: entities/{entity}/notes/{note} or workspaces/{workspace}/notes/{note}
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/workspaces/{workspace}/notes
https://api.bndry.app/v1alpha/workspaces/{workspace}/notes
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/workspaces/{workspace}/notes?noteId=note-20240315-compliance-review' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "entities/customer-acme-corp/notes/note-20240315-compliance-review",
"content": "Customer completed KYC verification. All documents reviewed and approved. Credit score: 750. Ready for loan processing.",
"createTime": "1s",
"updateTime": "1s"
}'
{ "name": "entities/customer-acme-corp/notes/note-20240315-compliance-review", "content": "Customer completed KYC verification. All documents reviewed and approved. Credit score: 750. Ready for loan processing.", "authorId": "user-sarah-johnson", "author": "Sarah Johnson", "createTime": "1s", "updateTime": "1s", "isEdited": true }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/notes/{note}
https://api.bndry.app/v1alpha/entities/{entity}/notes/{note}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/notes/{note}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "name": "entities/customer-acme-corp/notes/note-20240315-compliance-review", "content": "Customer completed KYC verification. All documents reviewed and approved. Credit score: 750. Ready for loan processing.", "authorId": "user-sarah-johnson", "author": "Sarah Johnson", "createTime": "1s", "updateTime": "1s", "isEdited": true }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/notes/{note}
https://api.bndry.app/v1alpha/entities/{entity}/notes/{note}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/notes/{note}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "name": "entities/customer-acme-corp/notes/note-20240315-compliance-review", "content": "Customer completed KYC verification. All documents reviewed and approved. Credit score: 750. Ready for loan processing.", "authorId": "user-sarah-johnson", "author": "Sarah Johnson", "createTime": "1s", "updateTime": "1s", "isEdited": true }
Required. The note to update. The note's name
field is used to identify the note to update. Format: notes/{note}
(IDENTIFIER) The resource name of the note. Format: entities/{entity}/notes/{note} or workspaces/{workspace}/notes/{note}
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/notes/{note}
https://api.bndry.app/v1alpha/entities/{entity}/notes/{note}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/notes/{note}?updateMask.paths=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "entities/customer-acme-corp/notes/note-20240315-compliance-review",
"content": "Customer completed KYC verification. All documents reviewed and approved. Credit score: 750. Ready for loan processing.",
"createTime": "1s",
"updateTime": "1s"
}'
{ "name": "entities/customer-acme-corp/notes/note-20240315-compliance-review", "content": "Customer completed KYC verification. All documents reviewed and approved. Credit score: 750. Ready for loan processing.", "authorId": "user-sarah-johnson", "author": "Sarah Johnson", "createTime": "1s", "updateTime": "1s", "isEdited": true }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/workspaces/{workspace}/notes/{note}
https://api.bndry.app/v1alpha/workspaces/{workspace}/notes/{note}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/workspaces/{workspace}/notes/{note}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "name": "entities/customer-acme-corp/notes/note-20240315-compliance-review", "content": "Customer completed KYC verification. All documents reviewed and approved. Credit score: 750. Ready for loan processing.", "authorId": "user-sarah-johnson", "author": "Sarah Johnson", "createTime": "1s", "updateTime": "1s", "isEdited": true }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/workspaces/{workspace}/notes/{note}
https://api.bndry.app/v1alpha/workspaces/{workspace}/notes/{note}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/workspaces/{workspace}/notes/{note}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "name": "entities/customer-acme-corp/notes/note-20240315-compliance-review", "content": "Customer completed KYC verification. All documents reviewed and approved. Credit score: 750. Ready for loan processing.", "authorId": "user-sarah-johnson", "author": "Sarah Johnson", "createTime": "1s", "updateTime": "1s", "isEdited": true }
Required. The note to update. The note's name
field is used to identify the note to update. Format: notes/{note}
(IDENTIFIER) The resource name of the note. Format: entities/{entity}/notes/{note} or workspaces/{workspace}/notes/{note}
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/workspaces/{workspace}/notes/{note}
https://api.bndry.app/v1alpha/workspaces/{workspace}/notes/{note}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/workspaces/{workspace}/notes/{note}?updateMask.paths=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "entities/customer-acme-corp/notes/note-20240315-compliance-review",
"content": "Customer completed KYC verification. All documents reviewed and approved. Credit score: 750. Ready for loan processing.",
"createTime": "1s",
"updateTime": "1s"
}'
{ "name": "entities/customer-acme-corp/notes/note-20240315-compliance-review", "content": "Customer completed KYC verification. All documents reviewed and approved. Credit score: 750. Ready for loan processing.", "authorId": "user-sarah-johnson", "author": "Sarah Johnson", "createTime": "1s", "updateTime": "1s", "isEdited": true }