Request
The PipeRiv API generally uses GET and POST requests.
Below is a live example of a GET request that you can copy and paste.
curl https://www.piperiv.com/api/v1/hello
Below is the expected result from that cURL call:
{
"status": "success",
"messages": [],
"meta": {},
"data": {
"name": "World"
}
}
And here is a live example of a POST request that you can copy and paste.
curl https://www.piperiv.com/api/v1/hello -d "name=Friend"
Below is the expected result from that cURL call:
{
"status": "success",
"messages": [],
"meta": {},
"data": {
"name": "Friend"
}
}