Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
List of live reactions to submit.
Response
Live reaction submission response.
List of processed live reactions.
curl --request POST \
--url https://apix.us.amity.co/api/v1/reactions/live \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"liveStreamId": "<string>",
"reactions": [
{
"referencePublicId": "<string>",
"referenceType": "<string>",
"reactionName": "<string>",
"occurredAt": "2023-11-07T05:31:56Z"
}
]
}'{
"reactions": [
{
"userId": "<string>",
"liveStreamId": "<string>",
"targetId": "<string>",
"targetType": "user",
"referencePublicId": "<string>",
"referenceId": "<string>",
"referenceType": "post",
"reactionName": "<string>",
"occurredAt": "2023-11-07T05:31:56Z"
}
]
}Send reactions to a live streaming.
curl --request POST \
--url https://apix.us.amity.co/api/v1/reactions/live \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"liveStreamId": "<string>",
"reactions": [
{
"referencePublicId": "<string>",
"referenceType": "<string>",
"reactionName": "<string>",
"occurredAt": "2023-11-07T05:31:56Z"
}
]
}'{
"reactions": [
{
"userId": "<string>",
"liveStreamId": "<string>",
"targetId": "<string>",
"targetType": "user",
"referencePublicId": "<string>",
"referenceId": "<string>",
"referenceType": "post",
"reactionName": "<string>",
"occurredAt": "2023-11-07T05:31:56Z"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List of live reactions to submit.
Live reaction submission response.
List of processed live reactions.
Show child attributes