# Delete API Keys

| **API URL**         | {{url}}/fhir-user-service/api-key-managers/delete  |
| ------------------- | -------------------------------------------------- |
| **Method**          | DELETE                                             |
| **Request Headers** | Authorization : Bearer \[token]                    |
| **Description**     | Deletes an API key associated with a specific user |

#### **Input** <a href="#accountcreate-input" id="accountcreate-input"></a>

<table data-header-hidden><thead><tr><th width="233"></th><th></th><th></th></tr></thead><tbody><tr><td><strong>Field Name</strong></td><td><strong>Type</strong></td><td><strong>Example</strong></td></tr><tr><td>Authorization(Header)</td><td>String</td><td>Authorized token from login response</td></tr><tr><td>userId</td><td>Long</td><td>1</td></tr></tbody></table>

#### **Sample Input:** <a href="#accountcreate-sampleinput" id="accountcreate-sampleinput"></a>

```postman_json
{
    "userId": 1
}
```

#### **Sample Output:** <a href="#accountcreate-sampleoutput" id="accountcreate-sampleoutput"></a>

```
{
    "message": "API key manager information successfully deleted.",
    "entity":null
    "status": true,
    "entityList": null,
    "responseCode": 200,
    "totalCount": null
}
```
