POST
/
websites
curl --request POST \
  --url http://localhost:8080/websites \
  --header 'Content-Type: application/json' \
  --data '{
  "hostname": "<string>"
}'
{
  "hostname": "<string>",
  "summary": {
    "visitors": 123
  }
}

Authorizations

_me_sess
string
cookie
required

Session token for authentication.

Body

application/json

Request body for creating a website.

hostname
string
required
Required string length: 1 - 253

Response

201
application/json
Created

Response body for getting a website.

hostname
string
required
Required string length: 1 - 253
summary
object