查询短信签名申请状态-QueryUSMSSignature

调用接口QueryUSMSSignature查询短信签名申请状态

Request Parameters

Parameter nameTypeDescriptionRequired
ProjectIdstring项目ID。不填写为默认项目,子帐号必须填写。 请参考GetProjectList接口No
SigIdstring已申请的短信签名ID(短信签名申请时的工单ID);签名ID和签名至少需填写1项;No
SigContentstring签名内容;签名ID和签名至少需填写1项;No

Response Elements

Parameter nameTypeDescriptionRequired
RetCodeint操作返回码Yes
Actionstring操作名称Yes
Messagestring发生错误时,表示具体错误描述Yes
Dataobject签名信息Yes

OutSignature

Parameter nameTypeDescriptionRequired
SigIdstring签名IDYes
SigContentstring签名内容Yes
Statusint签名状态。0-待审核 1-审核中 2-审核通过 3-审核未通过 4-被禁用 Yes
ErrDescstring签名审核失败原因Yes

Request Example

https://api.ucloud.cn/?Action=QueryUSMSSignature
&ProjectId=BLAfnnPS
&SigId=SIG20190711D48C1F

Response Example

{
    "Message": "",
    "Data": {
        "SigId": "SIG20190711D48C1F",
        "SigContent": "test",
        "Status": 2,
        "ErrDesc": ""
    },
    "RetCode": 0,
    "Action": "QueryUSMSSignatureResponse"
}