Domains

Get domains by name. By default,The user's clouds are used to filter the final output

get

Gets domains by name.

By default,The user's clouds are used to filter the final output

Authorizations
Query parameters
namestringOptional
withSNIbooleanOptional
cloudsintegerOptional
Responses
200
OK
application/vnd.cegedim-it.v1+json
get
GET /itcare/networking/domains HTTP/1.1
Host: api.cegedim.cloud
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
  {
    "description": "text",
    "id": 1,
    "isManagedByCegedim": true,
    "isPublic": true,
    "name": "text",
    "sniDefault": true
  }
]

Get domain by its id.

get
Authorizations
Path parameters
domainIdinteger · int64Required

1234, example: 1234

Responses
200
OK
application/vnd.cegedim-it.v1+json
get
GET /itcare/networking/domains/{domainId} HTTP/1.1
Host: api.cegedim.cloud
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "description": "text",
  "id": 1,
  "isManagedByCegedim": true,
  "isPublic": true,
  "name": "text",
  "sniDefault": true
}

Last updated