Create Management Endpoint

Create Management Endpoint

Creation of Metrics provider Management Endpoint.

Request
URI
POST
https://{api_host}/management-service/api/management/endpoint/{tenantId}
COPY
Path Parameters
string
Required

tenant Id

Query Parameters
integer
page
Optional
Constraints: default: 1

Page Number

integer
limit
Optional
Constraints: default: 20

Number of entries per page

string
$orderby
Optional

Multiple comma-separated properties sorted in ascending or descending order

integer
$top
Optional

Sets the number of returned entries from the top of the response (total number per page in relation to skip)

integer
$skip
Optional

Sets how many entries you would like to skip

string
$filter
Optional

Boolean expression for whether a particular entry should be included in the response


Request Body
ManagementEndpointDetails2 of type(s) application/json
Optional
Responses
200

Success.

Returns ManagementEndpointDetails of type(s) */*
{
    "password": "string",
    "endpointUrl": "string",
    "tenant": "string",
    "username": "string"
}
string
password
Required
Constraints: minLength: 0 maxLength: 255

password

string
endpointUrl
Required
Constraints: minLength: 0 maxLength: 2083

endpointUrl

string
tenant
Required
Constraints: minLength: 1 maxLength: 255

tenant

string
username
Required
Constraints: minLength: 0 maxLength: 255

username


Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' https://{api_host}/management-service/api/management/endpoint/{tenantId}