What's new

Closed Unknown language to JSON

Status
Not open for further replies.

francislargo

Enthusiast
Joined
Jan 22, 2020
Posts
6
Reaction
0
Points
63
Pwede po paconvert ng code na ito to JSON request body.

curl -d '{
"recipientPhone": {
"countryCode": "HT",
"number": "50936377111"
},
"senderPhone": {
"countryCode": "US",
"number": "13059547862"
},
"operatorId": 173,
"amount": 15,
"customIdentifier": "transaction by john@example.com"
}'

Example code po iyan ng isang company. Pero pag irun ko na bad request (invalid format daw).
 
Or pano nalang po pala mag lagay ng another key &value sa value ng key parang ganto po siya pero mali e.

{

"senderPhone": {
"countryCode": "PH",
"number": "631234567890"
}

}
 
Lagyan mo ng content type yung request mo,

Code:
curl -H "Content-Type: application/json" \
    -d '<JSON HERE>'
 
try this:
Code:
curl -H 'Content-Type: application/json' -XPATCH -d 'countryCode=PH&number=123456789' https://theserver.com/api/senderphone

adjust mo nalang yung endpoint to reflect the destination.
 
Last edited:
Lagyan mo ng content type yung request mo,

Code:
curl -H "Content-Type: application/json" \
    -d '<JSON HERE>'

May ganyan na po siya sir sa http request na pinaglalagyan ko sa integromat. Kaya hindi ko na sinasama. Need parin po ba isama sa request body kahit ganun?
 
Status
Not open for further replies.
Back
Top