curl --request POST \
--url https://developer.synq.io/api/ingest/cloudwatch/v1/{log_group}/{log_stream} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"owner": "<string>",
"subscriptionFilters": [
"<string>"
],
"messageType": "<string>",
"logEvents": [
{
"id": "<string>",
"timestamp": "1s",
"message": "<string>"
}
]
}'
{}
curl --request POST \
--url https://developer.synq.io/api/ingest/cloudwatch/v1/{log_group}/{log_stream} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"owner": "<string>",
"subscriptionFilters": [
"<string>"
],
"messageType": "<string>",
"logEvents": [
{
"id": "<string>",
"timestamp": "1s",
"message": "<string>"
}
]
}'
{}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Success
The response is of type object
.