outposts_service_connections_all_state_retrieve
GET/api/v3//outposts/service_connections/all/:uuid/state/
Get the service connection's state
Request
Path Parameters
uuid uuidrequired
A UUID string identifying this Outpost Service-Connection.
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
healthy booleanrequired
version stringrequired
{
"healthy": true,
"version": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET '/api/v3/outposts/service_connections/all/:uuid/state/' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'