# Cybersafe

The CyberSafe API is a cutting-edge solution designed to bolster cybersecurity measures and mitigate digital threats in modern digital environments. This API empowers organizations with advanced threat detection capabilities, real-time monitoring, and actionable insights to safeguard their digital assets, protect sensitive data, and ensure the integrity of their digital infrastructure.&#x20;

## cybersafe

<mark style="color:green;">`POST`</mark> `https://secctrl.tutelar.io/api/v1/services/business_profile/cybersafe`

#### Sample Request Body

<table><thead><tr><th width="167">Body</th><th width="148">Type</th><th>Mandatory</th><th>Description</th></tr></thead><tbody><tr><td>phone_number</td><td>number</td><td>Yes</td><td>Phone Number</td></tr></tbody></table>

#### Sample Post Parameters

```json
{
    "phone_number": "6000000000"
}
```

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

```json
{
    "success": true,
    "code": 200,
    "message": "The request has been successfully completed.",
    "reference_id": "f7a8a0b9-61fd-4801-a56a-9f6f43ab1369",
    "status": "completed",
    "result": {
        "match_found": false,
        "cases": [],
        "source": ""
    },
    "requested_at": "2024-03-14T07:43:15.673Z",
    "completed_at": "2024-03-14T07:43:17.048Z"
}
```

{% endtab %}

{% tab title="400: Validation Error Response" %}

```json
{
    "success": false,
    "code": 400,
    "message": "Invalid input. Please check your request and try again.",
    "error": {
        "message": "Invalid phone number",
        "field": "phone_number",
        "code": "BAD_REQUEST"
    }
}
```

{% endtab %}

{% tab title="200: Failure Response" %}

```json
{
    "success": true,
    "code": 200,
    "message": "The request could not be completed due to an error.",
    "reference_id": "ecd78066-c7e9-4c9b-ba97-8eb18ed32947",
    "status": "failed",
    "error": {
        "message": "Validation Failed",
        "code": "ERROR"
    },
    "requested_at": "2024-03-14T05:21:05.793Z",
    "completed_at": "2024-03-14T05:21:07.640Z"
}
```

{% endtab %}
{% endtabs %}
