API for the BNDRY platform
- List activity logs for an entity
BNDRY API (v1alpha)
https://docs.bndry.net/_mock/apis/openapi/
https://api.bndry.app/
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 server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities
- BNDRY API
https://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>'Success
The list of entities.
A token to retrieve the next page of results, or empty if there are no more results in the list. string.example = ["ChAIAhABGAE"]
{ "entities": [ { … } ], "nextPageToken": "ChAIAhABGAE", "totalSize": 127 }
Required. The entity to create.
Required. The entity to create.
(OPTIONAL) Optional. A mutable, user-settable field for providing a human-readable name for the entity, to be used in user interfaces. Must be <= 63 characters. string.example = ["Example Financial Services Ltd"]
Optional. The etag of the resource. Used for optimistic concurrency control as per AIP-154. string.example = ["abc123"]
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities
- BNDRY API
https://api.bndry.app/v1alpha/entities
- 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?entityId=john-smith-001' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"displayName": "Example Financial Services Ltd",
"contactInfo": {
"telephone": [
"+61 2 9876 5432"
],
"businessTelephone": [
"+61 2 9876 5400"
],
"emailAddress": [
"john.smith@example.com"
],
"primaryContact": [
"Sarah Johnson"
],
"website": [
"https://www.example.com"
],
"registeredBusinessAddresses": [
{
"revision": 0,
"regionCode": "string",
"languageCode": "string",
"postalCode": "string",
"sortingCode": "string",
"administrativeArea": "string",
"locality": "string",
"sublocality": "string",
"addressLines": [
"string"
],
"recipients": [
"string"
],
"organization": "string"
}
],
"principalBusinessAddresses": [
{
"revision": 0,
"regionCode": "string",
"languageCode": "string",
"postalCode": "string",
"sortingCode": "string",
"administrativeArea": "string",
"locality": "string",
"sublocality": "string",
"addressLines": [
"string"
],
"recipients": [
"string"
],
"organization": "string"
}
],
"residentialAddresses": [
{
"revision": 0,
"regionCode": "string",
"languageCode": "string",
"postalCode": "string",
"sortingCode": "string",
"administrativeArea": "string",
"locality": "string",
"sublocality": "string",
"addressLines": [
"string"
],
"recipients": [
"string"
],
"organization": "string"
}
]
},
"registration": {
"property1": {
"value": "12 345 678 901",
"registrationDateTime": "2023-01-15T01:30:15.01Z",
"regionCode": "NSW",
"tradingName": "Example Financial Services",
"registeredName": "Example Financial Services Pty Ltd"
},
"property2": {
"value": "12 345 678 901",
"registrationDateTime": "2023-01-15T01:30:15.01Z",
"regionCode": "NSW",
"tradingName": "Example Financial Services",
"registeredName": "Example Financial Services Pty Ltd"
}
},
"riskDetails": {
"riskStatus": "RISK_STATUS_UNSPECIFIED",
"riskStatusReason": "RISK_STATUS_REASON_UNSPECIFIED",
"riskRating": "RISK_RATING_UNSPECIFIED"
},
"entityRelationships": [
{
"sourceEntity": "entities/john-smith",
"targetEntity": "entities/example-financial-services",
"type": "RELATIONSHIP_TYPE_UNSPECIFIED"
}
],
"externalIds": {
"cherryhub": "string",
"custom": {
"property1": "string",
"property2": "string"
}
},
"createTime": "2023-01-15T01:30:15.01Z",
"updateTime": "2023-01-15T01:30:15.01Z",
"purgeTime": "2023-01-15T01:30:15.01Z",
"annotations": {
"property1": "string",
"property2": "string"
},
"etag": "abc123",
"company": {
"type": "COMPANY_TYPE_UNSPECIFIED",
"industry": "Financial Services"
}
}'Success
(OPTIONAL) Optional. A mutable, user-settable field for providing a human-readable name for the entity, to be used in user interfaces. Must be <= 63 characters. string.example = ["Example Financial Services Ltd"]
Optional. The etag of the resource. Used for optimistic concurrency control as per AIP-154. string.example = ["abc123"]
{ "name": "string", "displayName": "Example Financial Services Ltd", "contactInfo": { "telephone": [ … ], "businessTelephone": [ … ], "emailAddress": [ … ], "primaryContact": [ … ], "website": [ … ], "registeredBusinessAddresses": [ … ], "principalBusinessAddresses": [ … ], "residentialAddresses": [ … ] }, "registration": { "property1": { … }, "property2": { … } }, "riskDetails": { "riskStatus": "RISK_STATUS_UNSPECIFIED", "riskStatusReason": "RISK_STATUS_REASON_UNSPECIFIED", "riskRating": "RISK_RATING_UNSPECIFIED" }, "entityRelationships": [ { … } ], "externalIds": { "cherryhub": "string", "custom": { … } }, "createTime": "2023-01-15T01:30:15.01Z", "updateTime": "2023-01-15T01:30:15.01Z", "purgeTime": "2023-01-15T01:30:15.01Z", "annotations": { "property1": "string", "property2": "string" }, "etag": "abc123", "company": { "type": "COMPANY_TYPE_UNSPECIFIED", "industry": "Financial Services" } }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}
- BNDRY API
https://api.bndry.app/v1alpha/entities/{entity}
- 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}?system=salesforce' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Success
(OPTIONAL) Optional. A mutable, user-settable field for providing a human-readable name for the entity, to be used in user interfaces. Must be <= 63 characters. string.example = ["Example Financial Services Ltd"]
Optional. The etag of the resource. Used for optimistic concurrency control as per AIP-154. string.example = ["abc123"]
{ "name": "string", "displayName": "Example Financial Services Ltd", "contactInfo": { "telephone": [ … ], "businessTelephone": [ … ], "emailAddress": [ … ], "primaryContact": [ … ], "website": [ … ], "registeredBusinessAddresses": [ … ], "principalBusinessAddresses": [ … ], "residentialAddresses": [ … ] }, "registration": { "property1": { … }, "property2": { … } }, "riskDetails": { "riskStatus": "RISK_STATUS_UNSPECIFIED", "riskStatusReason": "RISK_STATUS_REASON_UNSPECIFIED", "riskRating": "RISK_RATING_UNSPECIFIED" }, "entityRelationships": [ { … } ], "externalIds": { "cherryhub": "string", "custom": { … } }, "createTime": "2023-01-15T01:30:15.01Z", "updateTime": "2023-01-15T01:30:15.01Z", "purgeTime": "2023-01-15T01:30:15.01Z", "annotations": { "property1": "string", "property2": "string" }, "etag": "abc123", "company": { "type": "COMPANY_TYPE_UNSPECIFIED", "industry": "Financial Services" } }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}
- BNDRY API
https://api.bndry.app/v1alpha/entities/{entity}
- 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}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Success
(OPTIONAL) Optional. A mutable, user-settable field for providing a human-readable name for the entity, to be used in user interfaces. Must be <= 63 characters. string.example = ["Example Financial Services Ltd"]
Optional. The etag of the resource. Used for optimistic concurrency control as per AIP-154. string.example = ["abc123"]
{ "name": "string", "displayName": "Example Financial Services Ltd", "contactInfo": { "telephone": [ … ], "businessTelephone": [ … ], "emailAddress": [ … ], "primaryContact": [ … ], "website": [ … ], "registeredBusinessAddresses": [ … ], "principalBusinessAddresses": [ … ], "residentialAddresses": [ … ] }, "registration": { "property1": { … }, "property2": { … } }, "riskDetails": { "riskStatus": "RISK_STATUS_UNSPECIFIED", "riskStatusReason": "RISK_STATUS_REASON_UNSPECIFIED", "riskRating": "RISK_RATING_UNSPECIFIED" }, "entityRelationships": [ { … } ], "externalIds": { "cherryhub": "string", "custom": { … } }, "createTime": "2023-01-15T01:30:15.01Z", "updateTime": "2023-01-15T01:30:15.01Z", "purgeTime": "2023-01-15T01:30:15.01Z", "annotations": { "property1": "string", "property2": "string" }, "etag": "abc123", "company": { "type": "COMPANY_TYPE_UNSPECIFIED", "industry": "Financial Services" } }
Required. The entity to update.
The entity's name field is used to identify the entity to update. Format: entities/{entity}
Required. The entity to update.
The entity's name field is used to identify the entity to update. Format: entities/{entity}
(OPTIONAL) Optional. A mutable, user-settable field for providing a human-readable name for the entity, to be used in user interfaces. Must be <= 63 characters. string.example = ["Example Financial Services Ltd"]
Optional. The etag of the resource. Used for optimistic concurrency control as per AIP-154. string.example = ["abc123"]
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}
- BNDRY API
https://api.bndry.app/v1alpha/entities/{entity}
- 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}?updateMask.paths=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"displayName": "Example Financial Services Ltd",
"contactInfo": {
"telephone": [
"+61 2 9876 5432"
],
"businessTelephone": [
"+61 2 9876 5400"
],
"emailAddress": [
"john.smith@example.com"
],
"primaryContact": [
"Sarah Johnson"
],
"website": [
"https://www.example.com"
],
"registeredBusinessAddresses": [
{
"revision": 0,
"regionCode": "string",
"languageCode": "string",
"postalCode": "string",
"sortingCode": "string",
"administrativeArea": "string",
"locality": "string",
"sublocality": "string",
"addressLines": [
"string"
],
"recipients": [
"string"
],
"organization": "string"
}
],
"principalBusinessAddresses": [
{
"revision": 0,
"regionCode": "string",
"languageCode": "string",
"postalCode": "string",
"sortingCode": "string",
"administrativeArea": "string",
"locality": "string",
"sublocality": "string",
"addressLines": [
"string"
],
"recipients": [
"string"
],
"organization": "string"
}
],
"residentialAddresses": [
{
"revision": 0,
"regionCode": "string",
"languageCode": "string",
"postalCode": "string",
"sortingCode": "string",
"administrativeArea": "string",
"locality": "string",
"sublocality": "string",
"addressLines": [
"string"
],
"recipients": [
"string"
],
"organization": "string"
}
]
},
"registration": {
"property1": {
"value": "12 345 678 901",
"registrationDateTime": "2023-01-15T01:30:15.01Z",
"regionCode": "NSW",
"tradingName": "Example Financial Services",
"registeredName": "Example Financial Services Pty Ltd"
},
"property2": {
"value": "12 345 678 901",
"registrationDateTime": "2023-01-15T01:30:15.01Z",
"regionCode": "NSW",
"tradingName": "Example Financial Services",
"registeredName": "Example Financial Services Pty Ltd"
}
},
"riskDetails": {
"riskStatus": "RISK_STATUS_UNSPECIFIED",
"riskStatusReason": "RISK_STATUS_REASON_UNSPECIFIED",
"riskRating": "RISK_RATING_UNSPECIFIED"
},
"entityRelationships": [
{
"sourceEntity": "entities/john-smith",
"targetEntity": "entities/example-financial-services",
"type": "RELATIONSHIP_TYPE_UNSPECIFIED"
}
],
"externalIds": {
"cherryhub": "string",
"custom": {
"property1": "string",
"property2": "string"
}
},
"createTime": "2023-01-15T01:30:15.01Z",
"updateTime": "2023-01-15T01:30:15.01Z",
"purgeTime": "2023-01-15T01:30:15.01Z",
"annotations": {
"property1": "string",
"property2": "string"
},
"etag": "abc123",
"company": {
"type": "COMPANY_TYPE_UNSPECIFIED",
"industry": "Financial Services"
}
}'Success
(OPTIONAL) Optional. A mutable, user-settable field for providing a human-readable name for the entity, to be used in user interfaces. Must be <= 63 characters. string.example = ["Example Financial Services Ltd"]
Optional. The etag of the resource. Used for optimistic concurrency control as per AIP-154. string.example = ["abc123"]
{ "name": "string", "displayName": "Example Financial Services Ltd", "contactInfo": { "telephone": [ … ], "businessTelephone": [ … ], "emailAddress": [ … ], "primaryContact": [ … ], "website": [ … ], "registeredBusinessAddresses": [ … ], "principalBusinessAddresses": [ … ], "residentialAddresses": [ … ] }, "registration": { "property1": { … }, "property2": { … } }, "riskDetails": { "riskStatus": "RISK_STATUS_UNSPECIFIED", "riskStatusReason": "RISK_STATUS_REASON_UNSPECIFIED", "riskRating": "RISK_RATING_UNSPECIFIED" }, "entityRelationships": [ { … } ], "externalIds": { "cherryhub": "string", "custom": { … } }, "createTime": "2023-01-15T01:30:15.01Z", "updateTime": "2023-01-15T01:30:15.01Z", "purgeTime": "2023-01-15T01:30:15.01Z", "annotations": { "property1": "string", "property2": "string" }, "etag": "abc123", "company": { "type": "COMPANY_TYPE_UNSPECIFIED", "industry": "Financial Services" } }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}:undelete
- BNDRY API
https://api.bndry.app/v1alpha/entities/{entity}:undelete
- 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}:undelete' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Success
(OPTIONAL) Optional. A mutable, user-settable field for providing a human-readable name for the entity, to be used in user interfaces. Must be <= 63 characters. string.example = ["Example Financial Services Ltd"]
Optional. The etag of the resource. Used for optimistic concurrency control as per AIP-154. string.example = ["abc123"]
{ "name": "string", "displayName": "Example Financial Services Ltd", "contactInfo": { "telephone": [ … ], "businessTelephone": [ … ], "emailAddress": [ … ], "primaryContact": [ … ], "website": [ … ], "registeredBusinessAddresses": [ … ], "principalBusinessAddresses": [ … ], "residentialAddresses": [ … ] }, "registration": { "property1": { … }, "property2": { … } }, "riskDetails": { "riskStatus": "RISK_STATUS_UNSPECIFIED", "riskStatusReason": "RISK_STATUS_REASON_UNSPECIFIED", "riskRating": "RISK_RATING_UNSPECIFIED" }, "entityRelationships": [ { … } ], "externalIds": { "cherryhub": "string", "custom": { … } }, "createTime": "2023-01-15T01:30:15.01Z", "updateTime": "2023-01-15T01:30:15.01Z", "purgeTime": "2023-01-15T01:30:15.01Z", "annotations": { "property1": "string", "property2": "string" }, "etag": "abc123", "company": { "type": "COMPANY_TYPE_UNSPECIFIED", "industry": "Financial Services" } }
correct_name_format // name must start with 'entities/' string.example = ["entities/example-financial-services"]
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}:addEntityRelationship
- BNDRY API
https://api.bndry.app/v1alpha/entities/{entity}:addEntityRelationship
- 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}:addEntityRelationship' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"targetEntity": "entities/example-financial-services",
"relationshipType": "RELATIONSHIP_TYPE_UNSPECIFIED"
}'Success
(OPTIONAL) Optional. A mutable, user-settable field for providing a human-readable name for the entity, to be used in user interfaces. Must be <= 63 characters. string.example = ["Example Financial Services Ltd"]
Optional. The etag of the resource. Used for optimistic concurrency control as per AIP-154. string.example = ["abc123"]
{ "name": "string", "displayName": "Example Financial Services Ltd", "contactInfo": { "telephone": [ … ], "businessTelephone": [ … ], "emailAddress": [ … ], "primaryContact": [ … ], "website": [ … ], "registeredBusinessAddresses": [ … ], "principalBusinessAddresses": [ … ], "residentialAddresses": [ … ] }, "registration": { "property1": { … }, "property2": { … } }, "riskDetails": { "riskStatus": "RISK_STATUS_UNSPECIFIED", "riskStatusReason": "RISK_STATUS_REASON_UNSPECIFIED", "riskRating": "RISK_RATING_UNSPECIFIED" }, "entityRelationships": [ { … } ], "externalIds": { "cherryhub": "string", "custom": { … } }, "createTime": "2023-01-15T01:30:15.01Z", "updateTime": "2023-01-15T01:30:15.01Z", "purgeTime": "2023-01-15T01:30:15.01Z", "annotations": { "property1": "string", "property2": "string" }, "etag": "abc123", "company": { "type": "COMPANY_TYPE_UNSPECIFIED", "industry": "Financial Services" } }
correct_name_format // name must start with 'entities/' string.example = ["entities/john-smith-001"]
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}:removeEntityRelationship
- BNDRY API
https://api.bndry.app/v1alpha/entities/{entity}:removeEntityRelationship
- 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}:removeEntityRelationship' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"targetEntity": "entities/john-smith-001",
"relationshipType": "RELATIONSHIP_TYPE_UNSPECIFIED"
}'Success
(OPTIONAL) Optional. A mutable, user-settable field for providing a human-readable name for the entity, to be used in user interfaces. Must be <= 63 characters. string.example = ["Example Financial Services Ltd"]
Optional. The etag of the resource. Used for optimistic concurrency control as per AIP-154. string.example = ["abc123"]
{ "name": "string", "displayName": "Example Financial Services Ltd", "contactInfo": { "telephone": [ … ], "businessTelephone": [ … ], "emailAddress": [ … ], "primaryContact": [ … ], "website": [ … ], "registeredBusinessAddresses": [ … ], "principalBusinessAddresses": [ … ], "residentialAddresses": [ … ] }, "registration": { "property1": { … }, "property2": { … } }, "riskDetails": { "riskStatus": "RISK_STATUS_UNSPECIFIED", "riskStatusReason": "RISK_STATUS_REASON_UNSPECIFIED", "riskRating": "RISK_RATING_UNSPECIFIED" }, "entityRelationships": [ { … } ], "externalIds": { "cherryhub": "string", "custom": { … } }, "createTime": "2023-01-15T01:30:15.01Z", "updateTime": "2023-01-15T01:30:15.01Z", "purgeTime": "2023-01-15T01:30:15.01Z", "annotations": { "property1": "string", "property2": "string" }, "etag": "abc123", "company": { "type": "COMPANY_TYPE_UNSPECIFIED", "industry": "Financial Services" } }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}:EntityRelationships
- BNDRY API
https://api.bndry.app/v1alpha/entities/{entity}:EntityRelationships
- 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}:EntityRelationships?view=RELATIONSHIP_VIEW_UNSPECIFIED' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "entityRelationships": [ { … } ] }
Optional. The maximum number of activities to return. The service may return fewer than this value. If unspecified, at most 50 activities will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
Optional. A page token, received from a previous ListEntityActivities call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListEntityActivities must match the call that provided the page token.
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/activityLogs
- BNDRY API
https://api.bndry.app/v1alpha/entities/{entity}/activityLogs
- 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}/activityLogs?pageSize=25&pageToken=ChAIAhABGAE&skip=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "activityLogs": [ { … } ], "nextPageToken": "ChAIAhABGAE", "totalSize": 127 }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/activityLogs/{activityLog}
- BNDRY API
https://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
(IDENTIFIER) The resource name of the activity. Format: activityLog/{activity_log} string.example = ["activityLogs/01234567-89ab-cdef-0123-456789abcdef"]
- payload
- payload
- payload
- payload
- payload
- payload
Required. The payload containing activity-specific data.
Unique identifier for the case (UUID format)
{ "name": "activityLogs/01234567-89ab-cdef-0123-456789abcdef", "type": "ACTIVITY_TYPE_UNSPECIFIED", "source": "ACTIVITY_SOURCE_UNSPECIFIED", "payload": { "hawkRiskRatingResult": { … } }, "createTime": "2023-01-15T01:30:15.01Z", "updateTime": "2023-01-15T01:30:15.01Z", "entityNames": [ "entities/john-smith-001" ] }
Required. The entity to create.
(IDENTIFIER) The resource name of the activity. Format: activityLog/{activity_log} string.example = ["activityLogs/01234567-89ab-cdef-0123-456789abcdef"]
- payload
- payload
- payload
- payload
- payload
- payload
Required. The payload containing activity-specific data.
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/activityLogs
- BNDRY API
https://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": {
"hawkRiskRatingResult": {
"caseId": "string",
"customerId": "string",
"flaggingResults": [
{
"flag": "string"
}
],
"riskFactors": [
{
"factor": "string"
}
],
"riskLevel": "string",
"screeningResults": [
{
"type": "SCREENING_TYPE_UNSPECIFIED"
}
]
}
},
"createTime": "2023-01-15T01:30:15.01Z",
"updateTime": "2023-01-15T01:30:15.01Z",
"entityNames": [
"entities/john-smith-001"
]
}'Success
(IDENTIFIER) The resource name of the activity. Format: activityLog/{activity_log} string.example = ["activityLogs/01234567-89ab-cdef-0123-456789abcdef"]
- payload
- payload
- payload
- payload
- payload
- payload
Required. The payload containing activity-specific data.
Unique identifier for the case (UUID format)
{ "name": "activityLogs/01234567-89ab-cdef-0123-456789abcdef", "type": "ACTIVITY_TYPE_UNSPECIFIED", "source": "ACTIVITY_SOURCE_UNSPECIFIED", "payload": { "hawkRiskRatingResult": { … } }, "createTime": "2023-01-15T01:30:15.01Z", "updateTime": "2023-01-15T01:30:15.01Z", "entityNames": [ "entities/john-smith-001" ] }
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 server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/documents
- BNDRY API
https://api.bndry.app/v1alpha/entities/{entity}/documents
- 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}/documents?pageSize=25&pageToken=ChAIAhABGAE&showDeleted=true&skip=50&filter=John+Smith&orderBy=displayName+desc' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "documents": [ { … } ], "nextPageToken": "string", "totalSize": 0 }
Required. The document to create.
Optional. A mutable, user-settable field for providing a human-readable name for the document, to be used in user interfaces. Must be <= 63 characters. string.example = ["John Doe - Driver's License"] string.max_len = 128 string.min_len = 1
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/documents
- BNDRY API
https://api.bndry.app/v1alpha/entities/{entity}/documents
- 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}/documents' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"displayName": "John Doe - Driver'\''s License",
"content": "string",
"createTime": "2023-01-15T01:30:15.01Z",
"updateTime": "2023-01-15T01:30:15.01Z"
}'Success
Optional. A mutable, user-settable field for providing a human-readable name for the document, to be used in user interfaces. Must be <= 63 characters. string.example = ["John Doe - Driver's License"] string.max_len = 128 string.min_len = 1
The content of the document. Maximum file size is 10Mib. bytes.max_len = 10485760 bytes.min_len = 1
{ "name": "string", "displayName": "John Doe - Driver's License", "content": "string", "createTime": "2023-01-15T01:30:15.01Z", "updateTime": "2023-01-15T01:30:15.01Z" }