# 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.

### cybersafe

`POST` `https://secctrl.tutelar.io/api/v1/services/business_profile/cybersafe`

#### Sample Request Body

| Body          | Type   | Mandatory | Description  |
| ------------- | ------ | --------- | ------------ |
| phone\_number | number | Yes       | Phone Number |

#### Sample Post Parameters

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

200: Success Response

400: Validation Error Response

200: Failure 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"
}
```

```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"
    }
}
```

```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"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.v2.tutelar.io/cybersafe.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
