I need to send exactly this:
POST http://api.outbound.io/api/v1/identify
Content-Type: application/json
{
"api_key": "MY_API_KEY",
"user_id": "MY_UNIQUE_USER_ID",
"traits" : {
"email" : "[email protected]",
"name" : "Dhruv Mehta",
"phone" : "650xxxyyyyy"
}
}
i never did something like this and i've made a lot of research but i couldn't find how to send those parameters to that URL
i hope you guys can help me with an example please, best regards!
After a lot of research, i find out how to do it...
1.- Use
2.- this on your function
3.- Here comes the data you want to send via POST (in this example i will use the variables i've used.. you can replace them, add more or delete some.. it depends on the info you want to send)
3.- You set the Headers
4.-json_encode it
5.- Where are you sending the Post To?, which data?, type of request?, do it this way
*.- You can see the response uncommenting this snippet
*.- Finally if you want to redirect somewhere after everything is done.. do it this way...
You should have something like this.
}
This is how you call this function from another function (just in case)
if you have any questions let me now i'll be happy to help you ;)