Skip to main content
GET
/
profiles
/
{profileId}
/
activities
/
{activityId}
Show activity by ID performed by a profile.
curl --request GET \
  --url https://1-some-client.some-server.healvi-chat/third-party/v1/profiles/{profileId}/activities/{activityId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 123,
    "type": "welcome_message",
    "value": {},
    "created_at": "2023-01-01T12:00:00Z",
    "updated_at": "2023-01-01T12:00:00Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

profileId
integer
required
activityId
integer
required

Response

200 - application/json

Success

data
object

Describes an activity performed by a profile. For example, when a customer messages the business for the first time, a "privacy message" informing the customer will be sent. This will be persisted as an activity of type "privacy_message".