- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- Callback
- Try it!
Returns a list of active callbacks that belong to the execution with the given name. The returned callbacks are ordered by callback ID.
HTTP request
GET https://workflowexecutions.googleapis.com/v1/{parent=projects/*/locations/*/workflows/*/executions/*}/callbacks
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
parent |
Required. Name of the execution for which the callbacks should be listed. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution} Authorization requires the following IAM permission on the specified resource
|
Query parameters
Parameters | |
---|---|
pageSize |
Maximum number of callbacks to return per call. The default value is 100 and is also the maximum value. |
pageToken |
A page token, received from a previous Note that pagination is applied to dynamic data. The list of callbacks returned can change between page requests if callbacks are created or deleted. |
Request body
The request body must be empty.
Response body
RPC response object for the callbacks.list method.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"callbacks": [
{
object ( |
Fields | |
---|---|
callbacks[] |
The callbacks which match the request. |
nextPageToken |
A token, which can be sent as |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview.
Callback
An instance of a Callback created by an execution.
JSON representation |
---|
{ "name": string, "method": string, "availablePayloads": [ string ], "waiters": string } |
Fields | |
---|---|
name |
Output only. The resource name of the callback. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}/callback/{callback} |
method |
Output only. The method accepted by the callback. For example: GET, POST, PUT. |
availablePayloads[] |
Output only. The payloads received by the callback that have not been processed by a waiting execution step. |
waiters |
Output only. Number of execution steps waiting on this callback. |