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

Online now

Members online
1,056
Guests online
1,005
Total visitors
2,061

Forum statistics

Threads
2,277,032
Posts
28,973,829
Members
1,229,693
Latest member
riogab
Back
Top