Skip to main content
POST
/
pages
cURL
curl --request POST \
  --url https://api.feedspace.io/v3/pages \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'name=<string>' \
  --data 'custom_attributes={
  "cta_enabled": true,
  "cta_attributes": {
    "heading_text": "<string>",
    "body_text": "<string>",
    "button_label": "<string>",
    "button_color": "<string>",
    "position": "<string>",
    "card_background_color": "<string>",
    "card_border_color": "<string>",
    "button_url": "<string>"
  }
}'
{
  "message": "Page Created Successfully",
  "data": {
    "id": 407,
    "unique_page_id": "page_asN7DjyRStBAGx4xANmUuNK5",
    "slug": "J0SrBzf5yj",
    "public_url": "https://www.feedspace.io/w/J0SrBzf5yj"
  }
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using API Key and Secret Key. The credentials should be Base64 encoded in the format 'api_key:secret_key'. You can obtain your API Key and Secret Key from Feedspace → Automation → API (https://app.feedspace.io/automation/api).

Body

application/x-www-form-urlencoded
name
string
required

Name of the page

custom_attributes
object

Custom attributes for the page

Response

200 - application/json

Page created successfully.

message
string
data
object