GET
/v1/organizations/:organizationId/certificate-providers/
Copy to clipboard
Get list of certificateProvider
Required Permission: base.organization.certificateProvider.list
Get list of certificateProvider
Request
Add parameter in header
authorization
Example:
Authorization: Bearer <token>
organizationId
string
required
page
integer
optional
limit
integer
optional
sort
string
optional
name
string
optional
segmentId
integer
optional
expandTo
string
optional
Responses
200 Response
application/json
status
boolean
required
data
object
required
items
array [object]
required
id
string
required
name
string
required
description
string
optional
connectorToken
string
required
config
object
required
type
string
required
name
string
optional
serverUrl
string
required
subject
string
optional
keySize
string
optional
keyType
string
optional
keyUsage
string
optional
CAFingerprint
string
optional
retries
number
optional
retryDelay
number
optional
keyIsExtractable
boolean
optional
allowAllAppsAccess
boolean
optional
subjectAltName
object
optional
rfc822Name
array [string]
optional
dNSName
array [string]
optional
uniformResourceIdentifier
array [string]
optional
ntPrincipalName
string
optional
challenge
object
required
type
string
required
url
string
required
username
string
required
password
string
required
numChallenges
number
optional
expirationPercentage
number
optional
auth
string
optional
value
string
required
reports
array [object]
required
type
string
required
value
string
required
createdAt
string
required
counts
object
required
challenges
number
optional
version
integer
required
updatedAt
string
required
createdAt
string
required
segmentId
integer
optional
totalDocs
integer
required
limit
integer
required
hasPrevPage
boolean
required
hasNextPage
boolean
required
page
integer
required
totalPages
integer
required
prevPage
integer
required
nextPage
integer
required
{
"status": true,
"data": {
"items": [
{
"id": "string",
"name": "string",
"description": "string",
"connectorToken": "string",
"config": {
"type": "scep",
"name": "string",
"serverUrl": "string",
"subject": "string",
"keySize": "1024",
"keyType": "string",
"keyUsage": "encryption",
"CAFingerprint": "string",
"retries": 0,
"retryDelay": 0,
"keyIsExtractable": true,
"allowAllAppsAccess": true,
"subjectAltName": {
"rfc822Name": [
"string"
],
"dNSName": [
"string"
],
"uniformResourceIdentifier": [
"string"
],
"ntPrincipalName": "string"
},
"challenge": {
"type": "ndes",
"url": "string",
"username": "string",
"password": "string",
"numChallenges": 0,
"expirationPercentage": 0,
"auth": "basic"
}
},
"reports": [
{
"type": "string",
"value": "string",
"createdAt": "string"
}
],
"counts": {
"challenges": 0
},
"version": 0,
"updatedAt": "string",
"createdAt": "string",
"segmentId": 0
}
],
"totalDocs": 0,
"limit": 0,
"hasPrevPage": true,
"hasNextPage": true,
"page": 0,
"totalPages": 0,
"prevPage": 0,
"nextPage": 0
}
}
401 Response
application/json
status
boolean
optional
error
object
optional
code
number
optional
message
string
optional
{
"status": false,
"error": {
"code": 4002,
"message": "No auth token"
}
}
404 Response
application/json
status
boolean
optional
error
object
optional
code
number
optional
message
string
optional
{
"status": false,
"error": {
"code": 3001,
"message": "Entity not found"
}
}