🔒 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
  • 491
    Views
  • 3
    Participants
Last reply from:
bakakon

Trending Topics

Online now

Members online
848
Guests online
1,158
Total visitors
2,006

Forum statistics

Threads
2,289,528
Posts
29,059,024
Members
1,212,878
Latest member
Bob1233
Back
Top