Manage operations

This page applies to Apigee and Apigee hybrid.

This pages describes how to create and manage API operations using the Operations API. To learn more about operations, see Introduction to API operations.

Add a operation to an API version

You can add an API operation to an existing API version using the Create operations API.

REST

To add a new API operation, use the following command:

  curl --location --request POST 
  'https://apihub.googleapis.com/v1/projects/HUB_PROJECT/locations/HUB_LOCATION/apis/API_ID/versions/VERSION_ID/operations?api_operation_id=OPERATION_ID' \
--header 'Authorization: Bearer $(gcloud auth print-access-token)' \
--header 'Content-Type: application/json' \
--data '{
    "details":{
         "description":"DESCRIPTION",
         "deprecated":false,
        "documentation":{
                "external_uri":"EXTERNAL_URI"
            },
        "http_operation":{
            "method":"METHOD",
            "path":{
                "path":"PATH",
                "description":"DESCRIPTION"
            }
        }
    }
}'

Replace the following:

  • HUB_PROJECT: The project ID of the API hub project.
  • HUB_LOCATION: The location of the API hub project.
  • API_ID: The ID of the API.
  • VERSION_ID: The ID of the API version.
  • OPERATION_ID: The ID of the API operation.
  • DESCRIPTION: The description of the API operation.
  • EXTERNAL_URI: The external URI of the API operation.
  • METHOD: The method of the API operation.
  • PATH: The path of the API operation.

Example:

  curl --location --request POST 
  'https://apihub.googleapis.com/v1/projects/test-project/locations/us-central1/apis/test-api/versions/version-id/operations?api_operation_id=test-operation' \
  --header 'Authorization: Bearer $(gcloud auth print-access-token)' \
  --header 'Content-Type: application/json' \
  --data '{
      "details":{
           "description":"api to create root level entity api in apihub",
           "deprecated":false,
          "documentation":{
                  "external_uri":"https://google.com"
              },
          "http_operation":{
              "method":"POST",
              "path":{
                  "path":"/apis",
                  "description":"It is ccfe managed resource"
              }
          }
      }
  }'
  

Update an API operation

You can update an API operation using the Patch operations API.

REST

To update an API operation, use the following command:

  curl --location --request PATCH 'https://apihub.googleapis.com/v1/projects/HUB_PROJECT/locations/HUB_LOCATION/apis/API_ID/versions/VERSION_ID/operations/OPERATION_ID?update_mask=UPDATE_MASK' \
  --header 'Authorization: Bearer $(gcloud auth print-access-token)' \
  --data '{
      "details":{
           "description":"DESCRIPTION",
           "deprecated":false,
          "documentation":{
                  "external_uri":"EXTERNAL_URI"
              },
          "http_operation":{
              "method":"METHOD",
              "path":{
                  "path":"PATH",
                  "description":"DESCRIPTION"
              }
          }
      }
  }'
  

Replace the following:

  • HUB_PROJECT: The project ID of the API hub project.
  • HUB_LOCATION: The location of the API hub project.
  • API_ID: The ID of the API.
  • VERSION_ID: The ID of the API version.
  • OPERATION_ID: The ID of the API operation.
  • UPDATE_MASK: The update mask of the API operation.
  • DESCRIPTION: The description of the API operation.
  • EXTERNAL_URI: The external URI of the API operation.
  • PATH: The path of the API operation.

Example:

  curl --location --request PATCH 
  'https://apihub.googleapis.com/v1/projects/test-project/locations/us-central1/apis/test-api/versions/version-id/operations/test-operation?update_mask=details.http_operation.path' \
--header 'Authorization: Bearer $(gcloud auth print-access-token)' \
--data '{
    "details":{
         "description":"api to create root level entity api in apihub update",
         "deprecated":false,
        "documentation":{
                "external_uri":"https://google.com"
            },
        "http_operation":{
            "method":"POST",
            "path":{
                "path":"/apiss",
                "description":"It is ccfe managed api"
            }
        }
    }
}'

Delete an API operation

You can delete an API operation using the Delete operations API.

REST

To delete an API operation, use the following command:

  curl --location --request DELETE 'https://apihub.googleapis.com/v1/projects/HUB_PROJECT/locations/HUB_LOCATION/apis/API_ID/versions/VERSION_ID/operations/OPERATION_ID' \
  --header 'Authorization: Bearer $(gcloud auth print-access-token)'

Replace the following:

  • HUB_PROJECT: The project ID of the API hub project.
  • HUB_LOCATION: The location of the API hub project.
  • API_ID: The ID of the API.
  • VERSION_ID: The ID of the API version.
  • OPERATION_ID: The ID of the API operation.

Example:

  curl --location --request DELETE 'https://apihub.googleapis.com/v1/projects/test-project/locations/us-central1/apis/test-api/versions/version-id/operations/test-operation' \
  --header 'Authorization: Bearer $(gcloud auth print-access-token)'

List API operations

You can list or view the API operations of an API version using the API hub console UI or using the List operations API.

Console

To view the API operations of an API version, do the following:

  1. In the Google Cloud console, go to the API hub page.

    Go to API hub
  2. Click APIs.
  3. Locate the API you wish to inspect. Use Filter to specify keywords to filter the list of APIs. If needed, use Search to locate an API.
  4. Select an API.
  5. Go to the Versions tables in the API details page.
  6. Select an API version.
  7. The API operations for the selected API version are listed in the Operations table on the page.

REST

To list the API operations of an API version, use the following command:

  curl -H "Authorization: Bearer $(gcloud auth print-access-token)"  -X GET  
  https://apihub.googleapis.com/v1/projects/HUB_PROJECT/locations/HUB_LOCATION/apis/API_ID/versions/VERSION_ID/operations

Replace the following:

  • HUB_PROJECT: The project ID of the API hub project.
  • HUB_LOCATION: The location of the API hub project.
  • API_ID: The ID of the API.
  • VERSION_ID: The ID of the API version.

Example:

  curl -H "Authorization: Bearer $(gcloud auth print-access-token)"  -X GET  
  https://apihub.googleapis.com/v1/projects/test-project/locations/us-central1/apis/test-api/versions/version-id/operations

Get API operation

You can get the details of an API operation using the Get operations API. These details include the name, specification, description, create time, update time, and user-defined attributes.

REST

To get the details of an API operation, use the following command:

  curl -H "Authorization: Bearer $(gcloud auth print-access-token)"  -X GET  https://apihub.googleapis.com/v1/projects/HUB_PROJECT/locations/HUB_LOCATION/apis/API_ID/versions/VERSION_ID/operations/OPERATION_ID

Replace the following:

  • HUB_PROJECT: The project ID of the API hub project.
  • HUB_LOCATION: The location of the API hub project.
  • API_ID: The ID of the API.
  • VERSION_ID: The ID of the API version.
  • OPERATION_ID: The ID of the API operation.

Example:

  curl -H "Authorization: Bearer $(gcloud auth print-access-token)"  -X GET  https://apihub.googleapis.com/v1/projects/test-project/locations/us-central1/apis/test-api/versions/version-id/operations/test-operation

Considerations

  • For API versions with a valid OpenAPI specification and parsed operations, the Operations API can't be used to add, modify, or delete operations.
  • When a valid OpenAPI specification is added to an API version containing existing operations, the operations defined in the specification will take precedence and replace the current ones.

What's next