Untrack API version with Git

GET /apim/untrack/{path_to_apiversion}

Overview

This API stops tracking API version with Git.

Prerequisites

  • Write access to the assets to be added or updated.

Limitations

  • You cannot use SnapLogic service accounts to call any of the SnapLogic API Management Git operation APIs.

Request

 GET https://{controlplane_path}/api/1/rest/public/apim/untrack/{path_to_apiversion}

Path Parameters

Key Description
controlplane_path Required. The path to the SnapLogic control plane.

Example: cdn.elastic.snaplogic.com

For other control planes, substitute the subdomain name for elastic. For example:
  • cdn.uat.snaplogic.com
  • cdn.emea.snaplogic.com
path_to_apiversion Required. The path to the SnapLogic API version.

Format: /org_name/apim/api/apiversion

Important: The path comparison is case-sensitive.

Query Parameters

None.

Request Header

Specify Basic for authorization and application/json for content type.


Authorization: Basic {your_encoded_security_credentials}
Content-Type: application/json
          

Request Body

{
    "response_map": {
        "untracked_projects": [
            "path_to_apiversion"
        ]
    },
    "http_status_code": 200
}
Key Type Description
untracked_projects array An array object containing paths to API versions that need to be untracked.
path_to_apiversion string Specify path to required API version.

Response

Response Body


response:
{
    "response_map": {
        "untracked_projects": [
            "/org_name/apim/api/apiversion"
        ]
    },
    "http_status_code": 200
}