Start​
GET
/services/{uuid}/start
Start service. Post
request is also accepted.
Authorizations​
bearerAuth
Go to Keys & Tokens
/ API tokens
and create a new token. Use the token as the bearer token.
TypeHTTP (bearer)
Parameters​
Path Parameters
uuid*
UUID of the service.
Typestring
Requiredformat
uuid
Responses​
Start service.
application/json
JSON
{
"message": "Service starting request queued."
}
GET
/services/{uuid}/start
Playground​
Authorization
Variables
Key
Value
Samples​
Bruno
GET https://app.coolify.io/api/v1/services/%7Buuid%7D/start
Headers
authorization: Bearer Token
cURL
curl 'https://app.coolify.io/api/v1/services/%7Buuid%7D/start' \
--header 'Authorization: Bearer Token'
JavaScript
fetch('https://app.coolify.io/api/v1/services/%7Buuid%7D/start', {
headers: {
Authorization: 'Bearer Token'
}
})
PHP
$ch = curl_init("https://app.coolify.io/api/v1/services/%7Buuid%7D/start");
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Authorization: Bearer Token']);
curl_exec($ch);
curl_close($ch);
Python
requests.get(
"https://app.coolify.io/api/v1/services/%7Buuid%7D/start",
headers={
"Authorization": "Bearer Token"
}
)