Chilkat Online Tools

TCL / Postman API / Create a Fork

Back to Collection Items

load ./chilkat.dll

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

set http [new_CkHttp]

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

# The following JSON is sent in the request body.

# {
#   "label": "Fork label"
# }

set json [new_CkJsonObject]

CkJsonObject_UpdateString $json "label" "Fork label"

CkHttp_SetRequestHeader $http "Content-Type" "application/json"
CkHttp_SetRequestHeader $http "X-API-Key" "{{postman_api_key}}"

# resp is a CkHttpResponse
set resp [CkHttp_PostJson3 $http "https://api.getpostman.com/collections/fork/{{collection_uid}}?workspace={{workspace_id}}" "application/json" $json]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkJsonObject $json
    exit
}

puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp


delete_CkHttp $http
delete_CkJsonObject $json

Curl Command

curl -X POST
	-H "X-API-Key: {{postman_api_key}}"
	-H "Content-Type: application/json"
	-d '{
	"label": "Fork label"
}'
https://api.getpostman.com/collections/fork/{{collection_uid}}?workspace={{workspace_id}}

Postman Collection Item JSON

{
  "name": "Create a Fork",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n\t\"label\": \"Fork label\"\n}"
    },
    "url": {
      "raw": "https://api.getpostman.com/collections/fork/{{collection_uid}}?workspace={{workspace_id}}",
      "protocol": "https",
      "host": [
        "api",
        "getpostman",
        "com"
      ],
      "path": [
        "collections",
        "fork",
        "{{collection_uid}}"
      ],
      "query": [
        {
          "key": "workspace",
          "value": "{{workspace_id}}",
          "description": "Workspace ID is required to create a fork"
        }
      ]
    },
    "description": "This endpoint allows you to create a fork from an existing collection.\n\nOn successful creation of the collection, the response returns the collection `name`, `id`, `uid` along with `fork` information.\n\nYou can also specify the context of a workspace to fork a collection in by passing the `workspace` as a query param.\n\n> Requires <a href=\"#authentication\">API Key</a> as `X-Api-Key` request header or `apikey` URL query parameter."
  },
  "response": [
    {
      "name": "Create a Fork",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "name": "Content-Type",
            "value": "application/json",
            "type": "text"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n\t\"label\": \"Fork label\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "https://api.getpostman.com/collections/fork/{{collection_uid}}?workspace={{workspace_id}}",
          "protocol": "https",
          "host": [
            "api",
            "getpostman",
            "com"
          ],
          "path": [
            "collections",
            "fork",
            "{{collection_uid}}"
          ],
          "query": [
            {
              "key": "workspace",
              "value": "{{workspace_id}}",
              "description": "Workspace ID is required to create a fork"
            }
          ]
        }
      },
      "_postman_previewlanguage": "json",
      "header": null,
      "cookie": [
      ],
      "body": "{\n    \"collection\": {\n        \"id\": \"1eea798e-335e-4d3c-be2a-a058e5914701\",\n        \"name\": \"Sample Collection\",\n        \"fork\": {\n            \"label\": \"Fork label\",\n            \"createdAt\": \"2021-06-16T07:01:17.317Z\",\n            \"from\": \"48eda956-11ff-471c-a022-bcacb1a4c497\"\n        },\n        \"uid\": \"b9253cbd-d9ea-411f-b847-26a1b6ba09ae\"\n    }\n}"
    }
  ]
}