# Logout

## Endpoint => /user/logout

<mark style="color:green;">`POST`</mark> `/user/logout`

#### Headers

| Name                                            | Type   | Description     |
| ----------------------------------------------- | ------ | --------------- |
| secret-key<mark style="color:red;">\*</mark>    | String | User secret key |
| Authorization<mark style="color:red;">\*</mark> | String | Token           |

{% tabs %}
{% tab title="200 Success" %}

```javascript
{
    "status": "Success",
    "description": "Logout Successfull"
}
```

{% endtab %}

{% tab title="401 Unauthorized" %}

```json
json
{
    "status": "Error",
    "description": "Organization Secret Key is Required"
}
```

{% endtab %}
{% endtabs %}

```php
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://apisandbox.fezdelivery.co/v1/user/logout',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS =>'{
    "user_id":"G-ylNt-c7xD"
}',
  CURLOPT_HTTPHEADER => array(
    'secret-key: {{Your Secret Key}}'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
// Some code
```
