GET
/
v1
/
profiles
/
getOne
cURL
curl --request GET \
  --url https://dev.entropi.app/v1/profiles/getOne \
  --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

profileID
string
required

The profileID to retrieve

Response

200
application/json

API Response

The response is of type object.