Create a website
Create a websiteRequest body
host
string
Domain name or hostname of the website to trackdescription
string
Optional description of the website for organization purposes
Response
website_id
string
Unique identifier for the websitehost
string
Domain name or hostname of the website (e.g., example.com)
1 curl --request POST \2 --url https://api.livesession.io/v1/websites \3 --header 'accept: application/json' \4 --header 'content-type: application/json' \5 --data '6 {7 "host": "string",8 "description": "string"9 }10 '
1 {2 "website_id": "string",3 "host": "string"4 }