| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Credential | query | Credential | No | |
| Header | query | Header | No | |
| Envelopes | query | List<Envelope> | No | |
| DataCoding | query | string | No | |
| Commercial | query | bool | No | |
| RecipientType | query | int | No | |
| SkipAhs | query | bool | No | |
| CustomId | query | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Username | form | string | No | |
| Password | form | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| From | form | string | No | |
| ValidityPeriod | form | int? | No | |
| ScheduledDeliveryTime | form | DateTime? | No | |
| Route | form | int | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Message | form | string | No | |
| To | form | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Response | form | SubmitMultiReturnResponse | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| MessageId | form | long | No | |
| Status | form | Status | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Code | form | int | No | |
| Description | form | string | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /json/reply/SubmitMulti HTTP/1.1
Host: gw.mobilisim.com
Accept: application/json
Content-Type: application/json
Content-Length: length
{"Credential":{"Username":"String","Password":"String"},"Header":{"From":"String","ValidityPeriod":0,"ScheduledDeliveryTime":"0001-01-01T00:00:00.0000000","Route":0},"Envelopes":[{"Message":"String","To":"String"}],"DataCoding":"String","Commercial":false,"RecipientType":0,"SkipAhs":false,"CustomId":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"Response":{"MessageId":0,"Status":{"Code":0,"Description":"String"}}}