curl -X POST https://api.contactbutton.com/v1/workspaces/$WORKSPACE_ID/pages \
-H "Authorization: Bearer $CONTACTBUTTON_TOKEN" \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: page-acme-01' \
-d '{
"name":"Acme Support",
"slug":"acme-support",
"bio":"Book a demo, request a callback, or read our support articles.",
"agent_instructions":"Use published knowledge first. Ask before requesting a material action."
}'
curl -X POST https://api.contactbutton.com/v1/workspaces/$WORKSPACE_ID/pages/$PAGE_ID/publish \
-H "Authorization: Bearer $CONTACTBUTTON_TOKEN" \
-H 'Idempotency-Key: publish-acme-01'