Chilkat Online Tools

SQL Server / Anypoint Platform APIs / Delete dependency to asset Copy

Back to Collection Items

-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    -- This example assumes the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int

    -- Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    -- The following JSON is sent in the request body.

    -- [
    --   {
    --     "groupId": "bc6c7bb9-87c7-4220-833b-40509c780dd4",
    --     "assetId": "banking-user",
    --     "version": "1.0.1"
    --   }
    -- ]

    DECLARE @jarr int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonArray', @jarr OUT

    EXEC sp_OAMethod @jarr, 'AddObjectAt', @success OUT, -1
    DECLARE @jsonObj_1 int
    EXEC sp_OAGetProperty @jarr, 'Size', @iTmp0 OUT
    EXEC sp_OAMethod @jarr, 'ObjectAt', @jsonObj_1 OUT, @iTmp0 - 1
    EXEC sp_OAMethod @jsonObj_1, 'UpdateString', @success OUT, 'groupId', 'bc6c7bb9-87c7-4220-833b-40509c780dd4'
    EXEC sp_OAMethod @jsonObj_1, 'UpdateString', @success OUT, 'assetId', 'banking-user'
    EXEC sp_OAMethod @jsonObj_1, 'UpdateString', @success OUT, 'version', '1.0.1'
    EXEC @hr = sp_OADestroy @jsonObj_1

    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'X-OWNER-ID', '{{owner_id}}'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'X-ANYPNT-ENV-ID', '{{environment-id}}'
    -- Adds the "Authorization: Bearer 96b384f7-a6d2-43f9-a14b-652f60048b17" header.
    EXEC sp_OASetProperty @http, 'AuthToken', '96b384f7-a6d2-43f9-a14b-652f60048b17'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'application/json'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'X-ANYPNT-ORG-ID', '{{org-id}}'

    DECLARE @sbRequestBody int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.StringBuilder', @sbRequestBody OUT

    EXEC sp_OAMethod @jarr, 'EmitSb', @success OUT, @sbRequestBody

    DECLARE @resp int
    EXEC sp_OAMethod @http, 'PTextSb', @resp OUT, 'DELETE', 'https://domain.com/designcenter/api-designer/projects/{{project_id}}/branches/{{branch_name}}/exchange/dependencies', @sbRequestBody, 'utf-8', 'application/json', 0, 0
    EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
    IF @iTmp0 = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @jarr
        EXEC @hr = sp_OADestroy @sbRequestBody
        RETURN
      END

    EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
    PRINT @iTmp0
    EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
    PRINT @sTmp0
    EXEC @hr = sp_OADestroy @resp


    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @jarr
    EXEC @hr = sp_OADestroy @sbRequestBody


END
GO

Curl Command

curl -X DELETE
	-H "Authorization: Bearer 96b384f7-a6d2-43f9-a14b-652f60048b17"
	-H "X-ANYPNT-ENV-ID: {{environment-id}}"
	-H "X-ANYPNT-ORG-ID: {{org-id}}"
	-H "Content-Type: application/json"
	-H "X-OWNER-ID: {{owner_id}}"
	-d '[
    {
        "groupId": "bc6c7bb9-87c7-4220-833b-40509c780dd4",
        "assetId": "banking-user",
        "version": "1.0.1"
    }
]'
https://domain.com/designcenter/api-designer/projects/{{project_id}}/branches/{{branch_name}}/exchange/dependencies

Postman Collection Item JSON

{
  "name": "Delete dependency to asset Copy",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "var jsonData = pm.response.json();",
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "DELETE",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer 96b384f7-a6d2-43f9-a14b-652f60048b17"
      },
      {
        "key": "X-ANYPNT-ENV-ID",
        "type": "text",
        "value": "{{environment-id}}"
      },
      {
        "key": "X-ANYPNT-ORG-ID",
        "type": "text",
        "value": "{{org-id}}"
      },
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "type": "text",
        "value": "application/json"
      },
      {
        "key": "X-OWNER-ID",
        "value": "{{owner_id}}",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "[\n    {\n        \"groupId\": \"bc6c7bb9-87c7-4220-833b-40509c780dd4\",\n        \"assetId\": \"banking-user\",\n        \"version\": \"1.0.1\"\n    }\n]",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{url}}/designcenter/api-designer/projects/{{project_id}}/branches/{{branch_name}}/exchange/dependencies",
      "host": [
        "{{url}}"
      ],
      "path": [
        "designcenter",
        "api-designer",
        "projects",
        "{{project_id}}",
        "branches",
        "{{branch_name}}",
        "exchange",
        "dependencies"
      ]
    }
  },
  "response": [
  ]
}