POST
/
sites
Create a new site
curl --request POST \
  --url https://api.usefathom.com/v1/sites \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "sharing": "none",
  "share_password": "<string>"
}'
{
  "id": "CDBUGS",
  "object": "site",
  "name": "Bugs Bunny Portfolio",
  "sharing": "none",
  "created_at": "2023-11-07T05:31:56Z"
}

Create a site

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200 - application/json

Site created

The response is of type object.