**功能描述:检测角色是否存在接口**
**应用范围:**
**调用方式:** post
**测试源接口地址:** 115.231.193.94:9106/web/cp/checkIfExitRole
**正式源接口地址:** https://meng.youximao.com/web/cp/checkIfExitRole
**预演测试环境地址:**
**请求参数:**
| 字段名 | 类型 | 是否必填| 描述 |
| --- | --- |--- |---|
| CpGameId | int | Y | 游戏ID |
| CpGameName | String | Y |游戏名称 |
| CpServerId | int | Y | 区服Id |
| CpServerName | String | Y | 区服名称 |
| ActorID | String | Y | 角色id|
| Sign |String | Y | (name=value&…&key=审核人密码MD5值)签名规则具体参照下面内容 |
**返回格式:** JSON
**返回结果:**
| 字段名 | 类型 | 描述 |
| --- | --- |---|
| code | int | 返回状态码,1:成功 0:失败。|
| message | string | 返回信息|
```
正确返回示例:
{
"code":1,
"message":"角色存在"
}
```
```
错误返回:
{
"code": 0,
"message": ""
}
```