The API allows you to view and edit endpoints settings.
Clear endpoints settings.
DELETE /endpoints-settings
Content-Type: */*
...
HTTP/1.1 204 No Content
Returns endpoints settings details.
media type | data type | description |
---|---|---|
application/json | EndpointsSettingsDetails (JSON) | endpoints settings details |
GET /endpoints-settings
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
{
"username" : "...",
"url" : "...",
"isEndpointsEnabled" : true,
"connectionSuccessful" : true
}
Change endpoints settings details.
media type | data type | description |
---|---|---|
application/json | EndpointsSettingsRequest (JSON) | specify endpoints settings details to update |
media type | data type | description |
---|---|---|
application/json | EndpointsSettingsDetails (JSON) | updated details of endpoints settings |
PUT /endpoints-settings
Content-Type: application/json
Accept: application/json
{
"username" : "...",
"password" : "...",
"url" : "...",
"isEndpointsEnabled" : true,
"connectionSuccessful" : true
}
HTTP/1.1 204 No Content
Content-Type: application/json
{
"username" : "...",
"url" : "...",
"isEndpointsEnabled" : true,
"connectionSuccessful" : true
}
Returns endpoints settings details.
media type | data type | description |
---|---|---|
application/json | EndpointsInfo (JSON) | endpoints settings details |
GET /endpoints-settings/info
Content-Type: */*
Accept: application/json
...
HTTP/1.1 200 OK
Content-Type: application/json
{
"url" : "...",
"isEndpointsEnabled" : true
}
Change endpoints password.
media type | data type | description |
---|---|---|
application/json | StringDTO (JSON) | specify new password |
PUT /endpoints-settings/password
Content-Type: application/json
{
"value" : "..."
}
HTTP/1.1 204 No Content