v1
latestOpenAPI 3.1.02026-07-2295105298.6 KBBasics
Create Website
Creates a new website in your organization. The website will be created with onboarding step 1, ready for further configuration. Partner integrations may include an external_id to map their own identifier onto the new Athena website.
post/api/v1/websites
Request body
Example request
{
"url": "https://example.com",
"external_id": "ws_a7f3b2c9"
}Response
Website created successfully. Partner responses include an externalId field (string or null); direct-customer responses omit the field entirely.
Example response
{
"website": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"websiteUrl": "example.com",
"orgId": "987e6543-e21b-12d3-a456-426614174000",
"onboardingStep": 1,
"externalId": "ws_a7f3b2c9"
}
}