API Reference//
- Create a file for an entity
Create an activity log
Retrieve an activity log
Delete an activity log
Undelete an activity log
Batch get activity logs
List all entities
Create an entity
Retrieve an entity
Delete an entity
Update an entity
List activity logs for an entity
List identity documents for an entity
List files for an entity
View entity relationships
Add an entity relationship
Add a tag to an entity
Evaluate entity against the Entity Risk Rating rules
Get the entity input run against risk rating rules
Hard Delete an entity
Remove an entity relationship
Remove a tag from an entity
Undelete an entity
Batch get entities
Create a file for an enti...
Security
oauth2_client_credentials or oauth2_authorization_code
Required. The file to create.
Optional. A mutable, user-settable field for providing a human-readable name for the file, to be used in user interfaces. Must be <= 200 characters.
- Mock serverhttps://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/files
- BNDRY APIhttps://api.bndry.app/v1alpha/entities/{entity}/files
- oauth2_client_credentials
- oauth2_authorization_code
curl -i -X POST \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/entities/{entity}/files' \
-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 file, to be used in user interfaces. Must be <= 200 characters.
The content of the file. Maximum file size is 10Mib.
Output only. The timestamp when the file was created.
Output only. The timestamp when the file was most recently updated.
Response
{ "name": "string", "displayName": "John Doe - Driver's License", "content": "string", "createTime": "2023-01-15T01:30:15.01Z", "updateTime": "2023-01-15T01:30:15.01Z", "source": "string" }