POST api/v1/admin/users/{id}/certificates
Adds client certificates from the user. The logged in user must have permission to perform this action.
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | The ID of the user. | globally unique identifier | Required | 
Body Parameters
List of all certificates to be added to the user
Collection of stringRequest Formats
application/json, text/json
            Sample:
        [ "sample string 1", "sample string 2" ]
application/xml, text/xml
            Sample:
        <ArrayOfString xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <string>sample string 1</string> <string>sample string 2</string> </ArrayOfString>
application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
A list of all certificates added successfully from the user.
ResponseOfObject| Name | Description | Type | Additional information | 
|---|---|---|---|
| Error | Error | None. | |
| ResponseData | ResponseDataOfObject | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "Error": {
    "ErrorCode": "sample string 1",
    "ErrorReason": "sample string 2"
  },
  "ResponseData": {
    "Identification": {
      "UserId": "sample string 1"
    },
    "Result": "sample string 1",
    "Detail": {}
  }
}
        application/xml, text/xml
            Sample:
<ResponseOfObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Error>
    <ErrorCode>sample string 1</ErrorCode>
    <ErrorReason>sample string 2</ErrorReason>
  </Error>
  <ResponseData>
    <Result>sample string 1</Result>
    <Identification>
      <UserId>sample string 1</UserId>
    </Identification>
    <Detail />
  </ResponseData>
</ResponseOfObject>