AWS Step Functions · Example Payload

Step Functions List State Machines Example

Example request/response for listing AWS Step Functions state machines

API CompositionServerless OrchestrationWorkflowState MachineAutomation

Step Functions List State Machines Example is an example object payload from AWS Step Functions, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "List State Machines",
  "description": "Example request/response for listing AWS Step Functions state machines",
  "request": {
    "method": "POST",
    "url": "https://states.us-east-1.amazonaws.com/",
    "headers": {
      "Content-Type": "application/x-amz-json-1.0",
      "X-Amz-Target": "AmazonStates.ListStateMachines",
      "Authorization": "AWS4-HMAC-SHA256 Credential=..."
    },
    "body": {
      "maxResults": 10
    }
  },
  "response": {
    "status": 200,
    "body": {
      "stateMachines": [
        {
          "stateMachineArn": "arn:aws:states:us-east-1:123456789012:stateMachine:MyOrderWorkflow",
          "name": "MyOrderWorkflow",
          "type": "STANDARD",
          "creationDate": 1745000000.0
        },
        {
          "stateMachineArn": "arn:aws:states:us-east-1:123456789012:stateMachine:MyExpressProcessor",
          "name": "MyExpressProcessor",
          "type": "EXPRESS",
          "creationDate": 1745500000.0
        }
      ],
      "nextToken": null
    }
  }
}