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>" } ] } }
Returns a single profile by profileID
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The profileID to retrieve
API Response
The response is of type object.
object