Retrieve an existing Oracle GoldenGate Receiver Server Path Information

get

/services/{version}/targets/{path}/info

Request

Path Parameters
  • Minimum Length: 1
    Maximum Length: 32
    Pattern: ^[A-Za-z][A-Za-z0-9-_.]*$
  • Oracle GoldenGate Service API version.

    Allowed Values: [ "v2" ]
Back to Top

Response

Supported Media Types

200 Response

Body ()
Root Schema : Oracle GoldenGate Distribution Path info
Type: object
Title: Oracle GoldenGate Distribution Path info
Show Source
Nested Schema : lastStarted
Time when the distpath was last started, if null it means that the distpath was never started and created with status 'stopped'.
Match One
Show Source
  • Minimum Length: 20
    Maximum Length: 32
    Pattern: ^[0-9]{4}[-](0[1-9]|1[0-2])[-](0[1-9]|[12][0-9]|3[01])[tT ]([01][0-9]|2[0-3]):[0-5][0-9]:([0-5][0-9]|60)([.][0-9]{1,6})?([zZ]|[+-][0-9][0-9]:[0-5][0-9])$
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:9002/services/v2/distpaths/moriapath1/info",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:9002/services/v2/distpaths/moriapath1/info",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "threadId":1.40292288149248E14,
        "processId":28934,
        "$schema":"ogg:distPathInfo",
        "sinceLagReported":5,
        "sourceDatabaseInstance":"vlez1",
        "lastStarted":"2016-10-28T01:45:50.148Z",
        "sourceDatabaseName":"VLEZ1",
        "sourceExtractName":"EXT1",
        "lag":0
    }
}
Back to Top