GET
/
get_inputs
curl --request GET \
  --url https://api.gumloop.com/api/v1/get_inputs \
  --header 'Authorization: Bearer <token>'
{
  "inputs": [
    {
      "data_type": "string",
      "description": "<string>",
      "name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

saved_item_id
string
required

The ID of the saved item for which to retrieve input schemas.

user_id
string

User ID that created the flow. Required if project_id is not provided.

project_id
string

Project ID that the flow is under. Required if user_id is not provided.

Response

200
application/json
Successful retrieval of item input schemas
inputs
object[]

List of inputs for the saved item.