🔒 Closed Unknown language to JSON

Status
Not open for further replies.
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.
 
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.

About this Thread

  • 5
    Replies
  • 497
    Views
  • 3
    Participants
Last reply from:
bakakon

Trending Topics

Online now

Members online
1,112
Guests online
5,388
Total visitors
6,500

Forum statistics

Threads
2,312,599
Posts
29,169,185
Members
1,185,297
Latest member
baroniamichelle
Back
Top