Additional Headers
-
Hello,
I am trying to integrate CF7 with a third-party app. They require the contact form to send them this information:
curl -X “POST” “https://api.mariner.yembo.ai/initial-params” \
-H ‘Content-Type: application/json’ \
-H ‘X-Landing-Page-Access-Token: your-value-here ‘ \
-d $'{
“move”: {
“date”: “2018-09-01”
},
“consumer”: {
“givenName”: “Joe”,
“phone”: “5550001234”,
“email”: “[email protected]”,
“familyName”: “Schmo”
},
“origin”: {
“zip”: 12345,
“beds”: 3
},
“destination”: {
“zip”: 90210
}
}’I think some part of this request is clear, but I am not sure how to add these
curl -X “POST” “https://api.mariner.yembo.ai/initial-params” \
-H ‘Content-Type: application/json’ \
-H ‘X-Landing-Page-Access-Token: your-value-here ‘ \
-d $'{
“move”: {
“date”: “2018-09-01”
},I have the token here, but I am not sure how to insert those headers. Would you please help me?
Thanks!
The page I need help with: [log in to see the link]
- The topic ‘Additional Headers’ is closed to new replies.