Monday, March 13, 2017

POST JSON Object with multiple headers in php

Request header

Content-Type: application/json 
Authorization: Bearer [access token] 
Accept: application/json

if send unicode string with message, please set Content-Type charset to UTF-8

Following is a sample request of send service.

URL-https://example.com/requests

Method - POST

Body

{
    "outboundSMSMessageRequest": {
        "address": [
            "tel:+94771234567"
        ],
        "senderAddress": "tel:12345678",
        "outboundSMSTextMessage": {
            "message": "Test Message"
        },
        "clientCorrelator": "123456",
        "receiptRequest": {
            "notifyURL": "http://128.199.174.220:1080/sms/report",
            "callbackData": "some-data-useful-to-the-requester"
        },
        "senderName": "ACME Inc."
    }
}

How to post and get responce



via Lara

Advertisement