Skip to main content
POST
/
v1
/
installations
Record Installation
curl --request POST \
  --url https://api.example.com/v1/installations \
  --header 'Content-Type: application/json' \
  --data '
{
  "skill_slug": "<string>",
  "hostname": "<string>",
  "platform": "<string>"
}
'
{
  "id": "<string>",
  "skill_slug": "<string>",
  "hostname": "<string>",
  "platform": "<string>",
  "message": "Installation recorded"
}

Body

application/json
skill_slug
string
required
hostname
string
required
Required string length: 1 - 255
platform
string
required

Response

Successful Response

id
string
required
skill_slug
string
required
hostname
string
required
platform
string
required
message
string
default:Installation recorded