Add certificate
Basic Information
This interface is mainly used to add certificates
请求路径
POST /openapi/v1/teams/{team_id}/certificates
Body 请求体示例
{
"alias": "string",
"private_key": "string",
"certificate": "string",
"certificate_type": "string"
}
request parameters
name | Location | type | required | Chinese name | illustrate |
---|---|---|---|---|---|
team_id | path | string | Yes | none | |
body | body | TeamCertificatesC | no | none |
return result
status code | Status code meaning | illustrate | data model |
---|---|---|---|
200 | OK | success | TeamCertificatesR |
Model
TeamCertificatesC
{
"alias": "string",
"private_key": "string",
"certificate": "string",
"certificate_type": "string"
}
Attributes
name | type | required | constraint | Chinese name | illustrate |
---|---|---|---|---|---|
alias | string | true | none | Alias | certificate name |
private_key | string | true | none | Private key | Certificate |
certificate | string | true | none | Certificate | certificate key |
certificate_type | string | true | none | Certificate type | Certificate type |
TeamCertificatesR
{
"alias": "string",
"private_key": "string",
"certificate": "string",
"certificate_type": "string",
"id": 0
}
Attributes
name | type | required | constraint | Chinese name | illustrate |
---|---|---|---|---|---|
alias | string | true | none | Alias | certificate name |
private_key | string | true | none | Private key | Certificate |
certificate | string | true | none | Certificate | certificate key |
certificate_type | string | true | none | Certificate type | Certificate type |
id | integer | true | none | Id | id |