POST
/
test
Test API request with sample data
curl --request POST \
  --url https://api.profilebehavior.com/v3/test \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "ping": "pong"
}'
{
  "code": 200,
  "data": {
    "message": "Test successful",
    "bonus": "You'll have to see for yourself!"
  },
  "status": "success"
}

Authorizations

Authorization
string
header
required

Custom HMAC authentication header.

Format: public:signature:nonce:timestamp

Body

application/json

A fun test property used for validation

The body is of type object.

Response

Success

Standard response object for successful single-resource requests in the Profile Behavior API. Contains an HTTP status code, the returned resource data, and a status indicator.