POST
/
api
/
ingest
/
cloudwatch
/
v1
/
{log_group}
/
{log_stream}
IngestCloudwatchLogsData
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>"
    }
  ]
}'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

log_group
string
required
log_stream
string
required

Body

application/json

Response

200
application/json

Success

The response is of type object.