Retrieve the data stream service error messages if applicable

get

/services/{version}/stream/{streamName}/info/errors

Required Role: User

Retrieve the data stream service error messages if applicable

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

data stream error messages retrieved successfully.

Body ()
Root Schema : Oracle GoldenGate Data Stream Service Errors
Type: object
Title: Oracle GoldenGate Data Stream Service Errors
Errorss issued by Oracle GoldenGate Data Stream Service
Show Source
Nested Schema : errors
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 2147483647
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "rel":"canonical",
            "href":"http://localhost:9002/services/v2/stream/mystream1/info/errors",
            "mediaType":"application/json"
        },
        {
            "rel":"self",
            "href":"http://localhost:9002/services/v2/stream/mystream1/info/errors",
            "mediaType":"application/json"
        },
        {
            "rel":"describedby",
            "href":"http://localhost:9002/services/v2/metadata-catalog/streamNameErrors",
            "mediaType":"application/schema+json"
        }
    ],
    "response":{
        "errors":[
            "OGG-02191  Incompatible record 101 in /ogg/dirdat/a1000000009, rba 532 when getting trail header"
        ]
    },
    "messages":[
    ]
}
Back to Top