# submit_bot_for_verification

**POST** `/api/v1/bot/submit_bot_for_verification`

Product: [RCS](https://devdocs.pinnacle.in/docs/rcs.md)  
Version: [1.0](https://devdocs.pinnacle.in/docs/rcs/1-0.md)

## Request

URL: `https://api.example.com/rcs/api/v1/bot/submit_bot_for_verification`

Authentication location: `none`

Authentication name: `none`

### Request schema


```json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "string"
    },
    "screenImages": {
      "type": "string",
      "format": "binary"
    }
  }
}
```

### Request example


```json
{
  "data": "{\n  \"botId\": \"6a1d390cf9cbdcd11b02290d\",\n  \"is_conversational_supported\": true,\n  \"is_opt_out_by_platform\": true,\n  \"bot_access_instructions\": \"bot_access_instructions\",\n  \"bot_interaction_types\": \"bot_interaction_types\",\n  \"opt_in_message\": \"opt_in_message\",\n  \"opt_out_keywords\": \"opt_out_keywords\",\n  \"opt_out_message\": \"opt_out_message\",\n  \"revoke_opt_out_keywords\": \"revoke_opt_out_keywords\",\n  \"trigger_action\": \"trigger_action temp\",\n  \"revoke_opt_out_message\": \"revoke_opt_out_message\",\n  \"bot_recog_keywords\": \"bot_recog_keywords\",\n  \"video_url\": \"https://file-examples.com/storage/fe1a98702d6a1d25f9af8f4/2017/04/file_example_MP4_480_1_5MG.mp4\",\n  \"screen_image\": [\n    \"screen1.png\",\n    \"screen2.png\"\n  ]\n}",
  "screenImages": "<screenImages-file>"
}
```

## Response schema


```json
{}
```

## Response examples


```json
{}
```

## Status codes


```json
[
  {
    "code": 200,
    "description": "Successful response"
  }
]
```
