OpenPipeline Ingest API - POST Built-in SDLC events
Ingests Software Development Lifecycle (SDLC) events from built-in endpoints.
The request consumes an application/json
payload.
POST | SaaS | https://{your-environment-id}.apps.dynatrace.com/platform/ingest/v1/events.sdlc |
Authentication
To execute this request, you need an access token with openpipeline.events_sdlc
scope.
To learn how to obtain and use it, see Tokens and authentication.
Parameters
Parameter | Type | Description | In | Required |
---|---|---|---|---|
body | Events | The JSON body of the request. Contains the events for ingest. | body | required |
Request body objects
The Events
object
The events to be ingested.
Element | Type | Description | Required |
---|---|---|---|
<*> | object[] | List of events that will get ingested. | optional |
Request body JSON model
This is a model of the request body, showing the possible elements. It has to be adjusted for usage in an actual request.
[{"event.id": 1,"additionalProp1": "bar","additionalProp2": "foo","additionalProp3": [{"prop1": "string","prop2": 1}]},{"event.id": 2,"additionalProp1": 123.45,"additionalProp2": "lorem","additionalProp3": [{"prop1": "string","prop2": 1}]}]
Response
Response codes
Code | Type | Description |
---|---|---|
202 | - | Accepted. Response doesn't have a body. |
400 | Error | Failed. The input is invalid. |
404 | Error | Failed. Endpoint not found. |
413 | Error | Failed. Content too large. |
429 | Error | Failed. Too many requests. |
5XX | Error | Server-side error. |