https://docs.bndry.net/_mock/apis/openapi/
https://api.bndry.app/
Optional. The maximum number of automations to return. The service may return fewer than this value. If unspecified, at most 50 automations will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
Optional. A page token, received from a previous ListAutomations
call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListAutomations
must match the call that provided the page token.
Optional. A filter expression that filters the results listed in the response. See AIP-160 for filter syntax.
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/automations
https://api.bndry.app/v1alpha/automations
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/automations?pageSize=0&pageToken=string&filter=string&skip=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "automations": [ { … } ], "nextPageToken": "string", "totalSize": 0 }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/automations/{automation}
https://api.bndry.app/v1alpha/automations/{automation}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/automations/{automation}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "name": "automations/credit-approval-workflow", "displayName": "Credit Approval Workflow", "description": "Automates credit approval process for loan applications, including risk assessment, document verification, and compliance checks", "inputSchema": { "property1": {}, "property2": {} } }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/automations/{automation}:run
https://api.bndry.app/v1alpha/automations/{automation}:run
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/automations/{automation}:run' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"parameters": {
"property1": {},
"property2": {}
}
}'
Success
This resource represents a long-running operation that is the result of a network API call.
The error result of the operation in case of failure or cancellation.
The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].
A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client.
The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the name
should be a resource name ending with operations/{unique_id}
.
Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
{ "error": { "code": 0, "message": "string", "details": [ … ] }, "name": "string", "metadata": { "type": "string", "value": "string", "debug": {} }, "done": true }
Optional. The maximum number of executions to return. The service may return fewer than this value. If unspecified, at most 50 executions will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
Optional. A page token, received from a previous ListAutomationExecutions
call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListAutomationExecutions
must match the call that provided the page token.
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/automations/{automation}/executions
https://api.bndry.app/v1alpha/automations/{automation}/executions
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/automations/{automation}/executions?pageSize=0&pageToken=string&filter=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "automationExecutions": [ { … } ], "nextPageToken": "string", "totalSize": 0 }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/automations/{automation}/executions/{execution}
https://api.bndry.app/v1alpha/automations/{automation}/executions/{execution}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/automations/{automation}/executions/{execution}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Success
(IDENTIFIER) The resource name of the automation. Format: automations/{automation}/executions/{execution}
The automation being executed. Format: automations/{automation}
Current execution state.
The resource names of the forms that require a response to continue the execution.
Output only. The error which caused the execution to finish prematurely. The value is only present if the execution's state is FAILED
or CANCELLED
.
Output only. Timestamp when execution started.
{ "name": "automations/credit-approval-workflow/executions/exec-20240315-001", "automation": "automations/credit-approval-workflow", "inputParameters": { "property1": {}, "property2": {} }, "state": "STATE_UNSPECIFIED", "forms": [ "workspaces/example-financial/forms/kyc-verification-form" ], "error": { "code": 0, "message": "string", "details": [ … ] }, "startTime": "1s", "endTime": "1s" }
- Mock server
https://docs.bndry.net/_mock/apis/openapi/v1alpha/automations/{automation}/executions/{execution}:cancel
https://api.bndry.app/v1alpha/automations/{automation}/executions/{execution}:cancel
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.bndry.net/_mock/apis/openapi/v1alpha/automations/{automation}/executions/{execution}:cancel' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Success
(IDENTIFIER) The resource name of the automation. Format: automations/{automation}/executions/{execution}
The automation being executed. Format: automations/{automation}
Current execution state.
The resource names of the forms that require a response to continue the execution.
Output only. The error which caused the execution to finish prematurely. The value is only present if the execution's state is FAILED
or CANCELLED
.
Output only. Timestamp when execution started.
{ "name": "automations/credit-approval-workflow/executions/exec-20240315-001", "automation": "automations/credit-approval-workflow", "inputParameters": { "property1": {}, "property2": {} }, "state": "STATE_UNSPECIFIED", "forms": [ "workspaces/example-financial/forms/kyc-verification-form" ], "error": { "code": 0, "message": "string", "details": [ … ] }, "startTime": "1s", "endTime": "1s" }