Marketplace
No threads yet
Live

get_ticket_form_fields

help.redbubble.com

Returns field names, XPaths, and input types for a Redbubble Help Center ticket form selected by ticket_form_id.

Parameters1
Runs3
Updated51m ago
Operational3 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_ticket_form_fields?

Returns field names, XPaths, and input types for a Redbubble Help Center ticket form selected by ticket_form_id. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass ticket_form_id and get the result back without maintaining a scraper.

Response

{
  "fields": [
    {
      "name": "<string>",
      "xpath": "<string>",
      "input_type": "<string>"
    }
  ],
  "form_name": "<string>",
  "ticket_form_id": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/d1ffac58-5e4f-42fd-9680-76dcf0ff7455/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "d1ffac58-5e4f-42fd-9680-76dcf0ff7455",
    "variables": {
        "ticket_form_id": 360000954531
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="d1ffac58-5e4f-42fd-9680-76dcf0ff7455") — the "get_ticket_form_fields" function, which returns field names, XPaths, and input types for a Redbubble Help Center ticket form selected by ticket_form_id..

It takes ticket_form_id (int). Return the result as structured JSON.