forked from extern/bruno
101 lines
1.6 KiB
Plaintext
101 lines
1.6 KiB
Plaintext
ver 1.0
|
|
type http-request
|
|
name Send Bulk SMS
|
|
method GET
|
|
url https://api.textlocal.in/bulk_json?apiKey=secret=&numbers=919988776655&message=hello&sender=600010
|
|
|
|
params
|
|
1 apiKey secret
|
|
1 numbers 998877665
|
|
1 message hello
|
|
/params
|
|
|
|
headers(description=true)
|
|
1 content-type "Content Type" application/json
|
|
1 accept-language "" en-US,en;q=0.9,hi;q=0.8
|
|
0 transaction-id "The transaction ID" {{transactionId}}
|
|
/params
|
|
|
|
body-mode json
|
|
|
|
body(type=json)
|
|
{
|
|
apikey: "secret",
|
|
numbers: "+91998877665",
|
|
data: {
|
|
sender: "TXTLCL",
|
|
messages: [{
|
|
numbers: "+91998877665",
|
|
message: "Hello World"
|
|
}]
|
|
}
|
|
}
|
|
/body
|
|
|
|
body(type=graphql)
|
|
{
|
|
launchesPast {
|
|
launch_site {
|
|
site_name
|
|
}
|
|
launch_success
|
|
}
|
|
}
|
|
/body
|
|
|
|
script
|
|
let user = 'John Doe';
|
|
|
|
function onRequest(request) {
|
|
request.body.user = user;
|
|
}
|
|
|
|
function onResponse(request, response) {
|
|
expect(response.status).to.equal(200);
|
|
}
|
|
/script
|
|
|
|
assert
|
|
{
|
|
"$res.data.order.items.length": 1,
|
|
"$res.data.orderNumber.isDefined": true
|
|
}
|
|
/assert
|
|
|
|
vars
|
|
1 petId $res.data.id
|
|
/vars
|
|
|
|
response-example
|
|
name Created
|
|
headers
|
|
1 content-type "Content Type" application/json
|
|
1 accept-language "" en-US,en;q=0.9,hi;q=0.8
|
|
0 transaction-id "The transaction ID" {{transactionId}}
|
|
/headers
|
|
|
|
body
|
|
{
|
|
"data": {
|
|
"launchesPast": [
|
|
{
|
|
"launch_site": {
|
|
"site_name": "CCAFS SLC 40"
|
|
},
|
|
"launch_success": true
|
|
},
|
|
{
|
|
"launch_site": {
|
|
"site_name": "VAFB SLC 4E"
|
|
},
|
|
"launch_success": true
|
|
}
|
|
]
|
|
}
|
|
}
|
|
/body
|
|
/response-example
|
|
|
|
readme
|
|
Documentation about the request
|
|
/readme |