https://docs.bndry.net/_mock/apis/openapi/
https://bndry.app/api/
Required. The parent resource name. Format: entities/{entity} or workspaces/{workspace}
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://bndry.app/api/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?parent=string&pageSize=0&pageToken=string&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://bndry.app/api/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' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"content": "string",
"createTime": "1s",
"updateTime": "1s"
}'
{ "name": "string", "content": "string", "authorId": "string", "author": "string", "createTime": "1s", "updateTime": "1s", "isEdited": true }
Required. The parent resource name. Format: entities/{entity} or workspaces/{workspace}
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://bndry.app/api/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?parent=string&pageSize=0&pageToken=string&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://bndry.app/api/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' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"content": "string",
"createTime": "1s",
"updateTime": "1s"
}'
{ "name": "string", "content": "string", "authorId": "string", "author": "string", "createTime": "1s", "updateTime": "1s", "isEdited": true }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/notes/{note}
https://bndry.app/api/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}?name=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "name": "string", "content": "string", "authorId": "string", "author": "string", "createTime": "1s", "updateTime": "1s", "isEdited": true }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/notes/{note}
https://bndry.app/api/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}?name=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "name": "string", "content": "string", "authorId": "string", "author": "string", "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://bndry.app/api/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}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"content": "string",
"createTime": "1s",
"updateTime": "1s"
}'
{ "name": "string", "content": "string", "authorId": "string", "author": "string", "createTime": "1s", "updateTime": "1s", "isEdited": true }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/workspaces/{workspace}/notes/{note}
https://bndry.app/api/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}?name=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "name": "string", "content": "string", "authorId": "string", "author": "string", "createTime": "1s", "updateTime": "1s", "isEdited": true }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/workspaces/{workspace}/notes/{note}
https://bndry.app/api/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}?name=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "name": "string", "content": "string", "authorId": "string", "author": "string", "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://bndry.app/api/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}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"content": "string",
"createTime": "1s",
"updateTime": "1s"
}'
{ "name": "string", "content": "string", "authorId": "string", "author": "string", "createTime": "1s", "updateTime": "1s", "isEdited": true }