Skip to main content
GET
/
deployments
/
traffic-filter
/
link-ids
List traffic filter claimed link id
curl --request GET \
  --url https://api.elastic-cloud.com/api/v1/deployments/traffic-filter/link-ids \
  --header 'Authorization: <api-key>'
{
  "claimed_link_ids": [
    {
      "azure_endpoint_guid": "<string>",
      "azure_endpoint_name": "<string>",
      "link_id": "<string>",
      "region": "<string>"
    },
    {
      "azure_endpoint_guid": "<string>",
      "azure_endpoint_name": "<string>",
      "link_id": "<string>",
      "region": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Query Parameters

region
string

If provided limits the claimed id to that region only.

Example:

"<string>"

organization_id
string

Retrieves a list of resources that are associated to the specified organization ID. It only takes effect if the user is an admin.

Example:

"<string>"

Response

The collection of traffic filter claimed link id

Example:
[
{
"azure_endpoint_guid": "<string>",
"azure_endpoint_name": "<string>",
"link_id": "<string>",
"region": "<string>"
},
{
"azure_endpoint_guid": "<string>",
"azure_endpoint_name": "<string>",
"link_id": "<string>",
"region": "<string>"
}
]
I