Commit inicial - estructura base del proyecto
This commit is contained in:
@@ -0,0 +1,133 @@
|
||||
[Skip to content](https://coolify.io/docs/api-reference/api/operations/validate-server-by-uuid#VPContent)
|
||||
|
||||
Return to top
|
||||
|
||||
Validate[](https://coolify.io/docs/api-reference/api/operations/validate-server-by-uuid#validate)
|
||||
|
||||
===================================================================================================
|
||||
|
||||
GET
|
||||
|
||||
/servers/{uuid}/validate
|
||||
|
||||
Validate server by UUID.
|
||||
|
||||
Authorizations[](https://coolify.io/docs/api-reference/api/operations/validate-server-by-uuid#authorizations)
|
||||
|
||||
---------------------------------------------------------------------------------------------------------------
|
||||
|
||||
bearerAuth
|
||||
|
||||
Go to `Keys & Tokens` / `API tokens` and create a new token. Use the token as the bearer token.
|
||||
|
||||
Type
|
||||
|
||||
HTTP (bearer)
|
||||
|
||||
Parameters[](https://coolify.io/docs/api-reference/api/operations/validate-server-by-uuid#parameters)
|
||||
|
||||
-------------------------------------------------------------------------------------------------------
|
||||
|
||||
### Path Parameters
|
||||
|
||||
uuid\*
|
||||
|
||||
Server UUID
|
||||
|
||||
Type
|
||||
|
||||
string
|
||||
|
||||
Required
|
||||
|
||||
Responses[](https://coolify.io/docs/api-reference/api/operations/validate-server-by-uuid#responses)
|
||||
|
||||
-----------------------------------------------------------------------------------------------------
|
||||
|
||||
201400401404422
|
||||
|
||||
Server validation started.
|
||||
|
||||
Content-Type
|
||||
|
||||
application/json
|
||||
|
||||
SchemaJSON
|
||||
|
||||
JSON
|
||||
|
||||
{
|
||||
|
||||
"message": "Validation started."
|
||||
|
||||
}
|
||||
|
||||
GET
|
||||
|
||||
/servers/{uuid}/validate
|
||||
|
||||
Playground[](https://coolify.io/docs/api-reference/api/operations/validate-server-by-uuid#playground)
|
||||
|
||||
-------------------------------------------------------------------------------------------------------
|
||||
|
||||
Authorization
|
||||
|
||||
bearerAuth
|
||||
|
||||
Variables
|
||||
|
||||
Key
|
||||
|
||||
Value
|
||||
|
||||
uuid\*
|
||||
|
||||
Try it out
|
||||
|
||||
Samples[](https://coolify.io/docs/api-reference/api/operations/validate-server-by-uuid#samples)
|
||||
|
||||
-------------------------------------------------------------------------------------------------
|
||||
|
||||
BrunocURLJavaScriptPHPPython
|
||||
|
||||
Bruno
|
||||
|
||||
GET https://app.coolify.io/api/v1/servers/%7Buuid%7D/validate
|
||||
|
||||
Headers
|
||||
authorization: Token
|
||||
|
||||
|
||||
cURL
|
||||
|
||||
curl 'https://app.coolify.io/api/v1/servers/{uuid}/validate' \
|
||||
--header 'Authorization: Token'
|
||||
|
||||
JavaScript
|
||||
|
||||
fetch('https://app.coolify.io/api/v1/servers/{uuid}/validate', {
|
||||
headers: {
|
||||
Authorization: 'Token'
|
||||
}
|
||||
})
|
||||
|
||||
PHP
|
||||
|
||||
$ch = curl_init("https://app.coolify.io/api/v1/servers/{uuid}/validate");
|
||||
|
||||
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Authorization: Token']);
|
||||
|
||||
curl_exec($ch);
|
||||
|
||||
curl_close($ch);
|
||||
|
||||
Python
|
||||
|
||||
requests.get(
|
||||
"https://app.coolify.io/api/v1/servers/{uuid}/validate",
|
||||
headers={
|
||||
"Authorization": "Token"
|
||||
}
|
||||
)
|
||||
|
||||
Powered by [VitePress OpenAPI](https://github.com/enzonotario/vitepress-openapi)
|
||||
Reference in New Issue
Block a user