GET
Send an API GET request and store the response as a Value.
GET calls an HTTP endpoint and stores the response for later steps. Use it to read data from an API inside the same Flow as your browser steps.
For a walkthrough of auth Headers, storage names, and JSON asserts, see Test APIs in a Flow.

When to use it
Fetch a resource before or after a UI action.
Store the body under a clear Response Storage Name, then assert with Check JSON Value.
Configure
Basics
URL
Fully qualified URL, or a Value that expands to one
Response Storage Name
Name for the stored response (response by default)
Advanced
Headers
Request headers as JSON (use for Bearer tokens and API keys)
Expected Response Status Codes
Defaults to 2xx. Add specific codes when needed. Responses in the 5xx range fail as errors
Response Object
Body (default), Headers, or Complete
Status on fail
Related
Tags: integration, api, get, rest
Last updated