API for the BNDRY platform
BNDRY API (v1alpha)
Required. The entity to create.
- Mock serverhttps://docs.bndry.net/_mock/apis/openapi/v1alpha/activityLogs
- BNDRY APIhttps://api.bndry.app/v1alpha/activityLogs
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/activityLogs?activityLogId=activity-log-001' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "activityLogs/01234567-89ab-cdef-0123-456789abcdef",
"type": "ACTIVITY_TYPE_UNSPECIFIED",
"source": "ACTIVITY_SOURCE_UNSPECIFIED",
"payload": {
"bndryRiskRatingResult": {
"riskRating": {
"label": "string",
"value": 0
}
}
},
"createTime": "2023-01-15T01:30:15.01Z",
"updateTime": "2023-01-15T01:30:15.01Z",
"entityNames": [
"entities/john-smith-001"
],
"workspace": "workspaces/01234567-89ab-cdef-0123-456789abcdef"
}'Success
- payload
- payload
- payload
- payload
- payload
- payload
- payload
- payload
- payload
- payload
Required. The payload containing activity-specific data.
{ "name": "activityLogs/01234567-89ab-cdef-0123-456789abcdef", "type": "ACTIVITY_TYPE_UNSPECIFIED", "source": "ACTIVITY_SOURCE_UNSPECIFIED", "payload": { "bndryRiskRatingResult": { … } }, "createTime": "2023-01-15T01:30:15.01Z", "updateTime": "2023-01-15T01:30:15.01Z", "entityNames": [ "entities/john-smith-001" ], "workspace": "workspaces/01234567-89ab-cdef-0123-456789abcdef" }
- Mock serverhttps://docs.bndry.net/_mock/apis/openapi/v1alpha/activityLogs/{activityLog}
- BNDRY APIhttps://api.bndry.app/v1alpha/activityLogs/{activityLog}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/activityLogs/{activityLog}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Success
- payload
- payload
- payload
- payload
- payload
- payload
- payload
- payload
- payload
- payload
Required. The payload containing activity-specific data.
{ "name": "activityLogs/01234567-89ab-cdef-0123-456789abcdef", "type": "ACTIVITY_TYPE_UNSPECIFIED", "source": "ACTIVITY_SOURCE_UNSPECIFIED", "payload": { "bndryRiskRatingResult": { … } }, "createTime": "2023-01-15T01:30:15.01Z", "updateTime": "2023-01-15T01:30:15.01Z", "entityNames": [ "entities/john-smith-001" ], "workspace": "workspaces/01234567-89ab-cdef-0123-456789abcdef" }
Optional. The maximum number of entities to return. The service may return fewer than this value. If unspecified, at most 50 entities will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
Optional. A page token, received from a previous ListEntities call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListEntities must match the call that provided the page token.
Optional. If true, soft-deleted entities will be included in the response. See AIP-164.
Optional. The number of entities to skip before starting to collect the result set.
Optional. A filter expression that filters the results listed in the response. Filter only currently supports a fuzzy search on display name. See AIP-160 for more details.
- Mock serverhttps://docs.bndry.net/_mock/apis/openapi/v1alpha/entities
- BNDRY APIhttps://api.bndry.app/v1alpha/entities
- 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?pageSize=25&pageToken=ChAIAhABGAE&showDeleted=true&skip=50&filter=John+Smith&orderBy=displayName+desc' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "entities": [ { … } ], "nextPageToken": "ChAIAhABGAE", "totalSize": 127 }