GET
/
v1
/
profiles
/
getList
cURL
curl --request GET \
  --url https://dev.entropi.app/v1/profiles/getList \
  --header 'Authorization: Bearer <token>'
{
  "result": [
    {
      "profileID": "<string>",
      "productIDs": [
        "<string>"
      ],
      "firstName": "<string>",
      "lastName": "<string>",
      "metadata": {
        "source": "<string>",
        "acquired_date": "<string>",
        "last_interviewed": "<string>",
        "interview_count": 123,
        "sentiment": 123
      },
      "details": {
        "occupation": "<string>",
        "location": "<string>",
        "background": "<string>",
        "productAlignment": "<string>",
        "key_values": [
          "<string>"
        ],
        "interests": [
          "<string>"
        ]
      },
      "history": [
        {
          "type": "<string>",
          "id": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

productID
string
required

Retrieve profiles associated with this productID

Response

200
application/json

Profile List

The response is of type object.