Oracle GoldenGate Encryption API

Manage encryption keys and profiles

Operations 6

GET /services/v2/enckeys Oracle Goldengate List Encryption Keys #
GET /services/v2/enckeys/{keyName} Oracle Goldengate Retrieve an Encryption Key #
POST /services/v2/enckeys/{keyName} Oracle Goldengate Create an Encryption Key #
DELETE /services/v2/enckeys/{keyName} Oracle Goldengate Delete an Encryption Key #
GET /services/v2/masterkey Oracle Goldengate List Master Key Versions #
POST /services/v2/masterkey Oracle Goldengate Create a New Master Key Version #

Documentation

📖
Documentation
https://docs.oracle.com/en/middleware/goldengate/core/21.3/oggra/index.html
📖
Authentication
https://docs.oracle.com/en/middleware/goldengate/core/21.3/oggra/authentication.html
📖
Documentation
https://docs.oracle.com/en/database/goldengate/core/26/oggra/index.html
📖
Authentication
https://docs.oracle.com/en/database/goldengate/core/26/oggra/authenticate.html
📖
GettingStarted
https://docs.oracle.com/en/database/goldengate/core/26/
📖
Documentation
https://docs.oracle.com/en/middleware/goldengate/big-data/21.3/gadbd/index.html
📖
GettingStarted
https://docs.oracle.com/en/middleware/goldengate/big-data/21.3/gadbd/getting-started.html
📖
Documentation
https://docs.oracle.com/en/middleware/goldengate/veridata/12.2.1.4/gvdug/index.html
📖
APIReference
https://docs.oracle.com/en/middleware/goldengate/veridata/12.2.1.4/gvdra/index.html
📖
Documentation
https://docs.oracle.com/en/database/goldengate/veridata/26/
📖
Documentation
https://docs.oracle.com/en-us/iaas/api/#/en/goldengate/latest/
📖
GettingStarted
https://docs.oracle.com/en/cloud/paas/goldengate-service/index.html
📖
Authentication
https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm
📖
APIReference
https://docs.oracle.com/en-us/iaas/goldengate/doc/using-rest-api.html
📖
Documentation
https://docs.oracle.com/en/database/goldengate/stream-analytics/26/
📖
APIReference
https://docs.oracle.com/en/middleware/fusion-middleware/osa/19.1/ggsa-rest-api/quick-start.html
📖
GettingStarted
https://docs.oracle.com/en/database/goldengate/stream-analytics/26/
📖
Documentation
https://docs.oracle.com/en/database/goldengate/core/26/coredoc/distribute-datastream-rest-api.html

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/oracle-goldengate-encryption-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

oracle-goldengate-encryption-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Oracle GoldenGate REST Encryption API
  description: RESTful API for managing Oracle GoldenGate Microservices Architecture, including deployment configuration, extract and replicat process management, credentials, database connections, distribution and receiver services, performance metrics, and monitoring. Based on Oracle GoldenGate 21c Microservices Architecture REST API documentation.
  version: 21.3.0
  contact:
    name: Oracle Support
    url: https://support.oracle.com
  license:
    name: Oracle Technology Network License
    url: https://www.oracle.com/legal/terms.html
  x-documentation:
  - url: https://docs.oracle.com/en/middleware/goldengate/core/21.3/oggra/index.html
    description: Oracle GoldenGate REST API Reference 21c
  - url: https://docs.oracle.com/en/database/goldengate/core/26/oggra/index.html
    description: Oracle GoldenGate REST API Reference 26ai
servers:
- url: https://{goldengate-host}:{port}
  description: Oracle GoldenGate Microservices server
  variables:
    goldengate-host:
      default: localhost
      description: GoldenGate Microservices host
    port:
      default: '443'
      description: HTTPS port for the service
security:
- basicAuth: []
tags:
- name: Encryption
  description: Manage encryption keys and profiles
paths:
  /services/v2/enckeys:
    get:
      operationId: listEncryptionKeys
      summary: Oracle Goldengate List Encryption Keys
      description: Returns a list of all encryption keys in the wallet.
      tags:
      - Encryption
      responses:
        '200':
          description: Encryption keys listed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EncryptionKeyList'
              examples:
                Listencryptionkeys200Example:
                  summary: Default listEncryptionKeys 200 response
                  x-microcks-default: true
                  value:
                    keys:
                    - name: Example Title
                      algorithm: example_value
                      createdAt: '2026-01-15T10:30:00Z'
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /services/v2/enckeys/{keyName}:
    get:
      operationId: getEncryptionKey
      summary: Oracle Goldengate Retrieve an Encryption Key
      description: Returns details of a specific encryption key.
      tags:
      - Encryption
      parameters:
      - name: keyName
        in: path
        required: true
        schema:
          type: string
        example: example_value
      responses:
        '200':
          description: Encryption key retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EncryptionKey'
              examples:
                Getencryptionkey200Example:
                  summary: Default getEncryptionKey 200 response
                  x-microcks-default: true
                  value:
                    name: Example Title
                    algorithm: example_value
                    createdAt: '2026-01-15T10:30:00Z'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: createEncryptionKey
      summary: Oracle Goldengate Create an Encryption Key
      description: Creates a new encryption key in the wallet.
      tags:
      - Encryption
      parameters:
      - name: keyName
        in: path
        required: true
        schema:
          type: string
        example: example_value
      responses:
        '201':
          description: Encryption key created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EncryptionKey'
              examples:
                Createencryptionkey201Example:
                  summary: Default createEncryptionKey 201 response
                  x-microcks-default: true
                  value:
                    name: Example Title
                    algorithm: example_value
                    createdAt: '2026-01-15T10:30:00Z'
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      operationId: deleteEncryptionKey
      summary: Oracle Goldengate Delete an Encryption Key
      description: Deletes an encryption key from the wallet.
      tags:
      - Encryption
      parameters:
      - name: keyName
        in: path
        required: true
        schema:
          type: string
        example: example_value
      responses:
        '204':
          description: Encryption key deleted
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /services/v2/masterkey:
    get:
      operationId: listMasterKeyVersions
      summary: Oracle Goldengate List Master Key Versions
      description: Returns all versions of the master encryption key.
      tags:
      - Encryption
      responses:
        '200':
          description: Master key versions listed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MasterKeyVersionList'
              examples:
                Listmasterkeyversions200Example:
                  summary: Default listMasterKeyVersions 200 response
                  x-microcks-default: true
                  value:
                    versions:
                    - version: 10
                      status: current
                      createdAt: '2026-01-15T10:30:00Z'
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: createMasterKeyVersion
      summary: Oracle Goldengate Create a New Master Key Version
      description: Creates a new version of the master encryption key.
      tags:
      - Encryption
      responses:
        '201':
          description: Master key version created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MasterKeyVersion'
              examples:
                Createmasterkeyversion201Example:
                  summary: Default createMasterKeyVersion 201 response
                  x-microcks-default: true
                  value:
                    version: 10
                    status: current
                    createdAt: '2026-01-15T10:30:00Z'
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    EncryptionKey:
      type: object
      properties:
        name:
          type: string
          example: Example Title
        algorithm:
          type: string
          example: example_value
        createdAt:
          type: string
          format: date-time
          example: '2026-01-15T10:30:00Z'
    EncryptionKeyList:
      type: object
      properties:
        keys:
          type: array
          items:
            $ref: '#/components/schemas/EncryptionKey'
          example: []
    ErrorResponse:
      type: object
      properties:
        code:
          type: integer
          description: HTTP status code
          example: 10
        message:
          type: string
          description: Error message
          example: example_value
        severity:
          type: string
          description: Error severity level
          example: example_value
    MasterKeyVersionList:
      type: object
      properties:
        versions:
          type: array
          items:
            $ref: '#/components/schemas/MasterKeyVersion'
          example: []
    MasterKeyVersion:
      type: object
      properties:
        version:
          type: integer
          example: 10
        status:
          type: string
          enum:
          - current
          - retired
          example: current
        createdAt:
          type: string
          format: date-time
          example: '2026-01-15T10:30:00Z'
  responses:
    NotFound:
      description: The requested resource was not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Unauthorized:
      description: Authentication required or invalid credentials
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic authentication with GoldenGate user credentials