List
List identity providers
Request
URI
GET
https://{api_host}/tca/tenancy/api/v1/idps
COPY
Query Parameters
string
nextpage_opaque_marker
Optional
May contain page_no=
nextpage_opaque_marker example
nextpage_opaque_marker=page_no=1,page_size=20,sort=createdAt:desc
string
filter
Optional
The filter for listing
filter example
filter=(eq,name,myIdp)
Header Parameters
boolean
x-tca-anymatch
Optional
If false, then the filter expressions are taken in logical AND relation, otherwise OR
x-tca-anymatch example
true
Responses
200
List of IDPs
Returns Array of IdpBase of type(s) application/json
[
{
"name": "My IDP 1",
"description": "IDP using VMware SSO",
"type": "VC",
"id": "fc0a0058-3cfd-44b1-a91d-5110d48a63e2",
"createdAt": "2023-02-13T13:19:37.448Z",
"creationUser": "[email protected]",
"links": {
"self": {
"href": "/telco/admin/api/idps/v1/idp/fc0a0058-3cfd-44b1-a91d-5110d48a63e2"
},
"update": {
"href": "/telco/admin/api/idps/v1/idp/fc0a0058-3cfd-44b1-a91d-5110d48a63e2"
},
"delete": {
"href": "/telco/admin/api/idps/v1/idp/fc0a0058-3cfd-44b1-a91d-5110d48a63e2"
}
}
}
]
400
Returns BadRequest of type(s) application/json
{
"errors": [
{
"code": "string",
"message": "string"
}
]
}
401
Unauthorized
Operation doesn't return any data structure
403
Forbidden
Operation doesn't return any data structure
500
Returns InternalServerError of type(s) application/json
{
"errors": [
{
"code": "string",
"message": "string"
}
]
}