Chilkat Online Tools

DataFlex / Cognite API v1 / Upload file

Back to Collection Items

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vJson
    Handle hoJson
    Variant vResp
    Handle hoResp
    String sTemp1
    Integer iTemp1
    Boolean bTemp1

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

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

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

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

    // {
    //   "name": "officia nisi",
    //   "externalId": "in",
    //   "directory": "et dolor",
    //   "source": "pariatur dolor aliqua nostrud",
    //   "mimeType": "occaecat est",
    //   "metadata": {},
    //   "assetIds": [
    //     4034774287403938,
    //     2425651827249892
    //   ],
    //   "dataSetId": 53722416444006,
    //   "sourceCreatedTime": 77683565,
    //   "sourceModifiedTime": 68614962,
    //   "securityCategories": [
    //     1979707127020012,
    //     747443067645264
    //   ],
    //   "labels": [
    //     {
    //       "externalId": "officia reprehenderit Ut"
    //     },
    //     {
    //       "externalId": "consectetur exercitation ipsum"
    //     }
    //   ],
    //   "geoLocation": {
    //     "type": "Feature",
    //     "geometry": {
    //       "type": "MultiPoint",
    //       "coordinates": [
    //       ]
    //     },
    //     "properties": {}
    //   }
    // }

    Get Create (RefClass(cComChilkatJsonObject)) To hoJson
    If (Not(IsComObjectCreated(hoJson))) Begin
        Send CreateComObject of hoJson
    End
    Get ComUpdateString Of hoJson "name" "officia nisi" To iSuccess
    Get ComUpdateString Of hoJson "externalId" "in" To iSuccess
    Get ComUpdateString Of hoJson "directory" "et dolor" To iSuccess
    Get ComUpdateString Of hoJson "source" "pariatur dolor aliqua nostrud" To iSuccess
    Get ComUpdateString Of hoJson "mimeType" "occaecat est" To iSuccess
    Get ComUpdateNewObject Of hoJson "metadata" To iSuccess
    Get ComUpdateInt Of hoJson "assetIds[0]" 4034774287403938 To iSuccess
    Get ComUpdateInt Of hoJson "assetIds[1]" 2425651827249892 To iSuccess
    Get ComUpdateInt Of hoJson "dataSetId" 123 To iSuccess
    Get ComUpdateInt Of hoJson "sourceCreatedTime" 77683565 To iSuccess
    Get ComUpdateInt Of hoJson "sourceModifiedTime" 68614962 To iSuccess
    Get ComUpdateInt Of hoJson "securityCategories[0]" 1979707127020012 To iSuccess
    Get ComUpdateInt Of hoJson "securityCategories[1]" 747443067645264 To iSuccess
    Get ComUpdateString Of hoJson "labels[0].externalId" "officia reprehenderit Ut" To iSuccess
    Get ComUpdateString Of hoJson "labels[1].externalId" "consectetur exercitation ipsum" To iSuccess
    Get ComUpdateString Of hoJson "geoLocation.type" "Feature" To iSuccess
    Get ComUpdateString Of hoJson "geoLocation.geometry.type" "MultiPoint" To iSuccess
    Get ComUpdateNewArray Of hoJson "geoLocation.geometry.coordinates" To iSuccess
    Get ComUpdateNewObject Of hoJson "geoLocation.properties" To iSuccess

    Send ComSetRequestHeader To hoHttp "content-type" "application/json"
    Send ComSetRequestHeader To hoHttp "api-key" "{{api-key}}"

    Get pvComObject of hoJson to vJson
    Get ComPostJson3 Of hoHttp "https://domain.com/api/v1/projects/{{project}}/files?overwrite=false" "application/json" vJson To vResp
    If (IsComObject(vResp)) Begin
        Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
        Set pvComObject Of hoResp To vResp
    End
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get ComStatusCode Of hoResp To iTemp1
    Showln iTemp1
    Get ComBodyStr Of hoResp To sTemp1
    Showln sTemp1
    Send Destroy of hoResp


End_Procedure

Curl Command

curl -X POST
	-H "api-key: {{api-key}}"
	-H "content-type: application/json"
	-d '{
    "name": "officia nisi",
    "externalId": "in",
    "directory": "et dolor",
    "source": "pariatur dolor aliqua nostrud",
    "mimeType": "occaecat est",
    "metadata": {},
    "assetIds": [
        4034774287403938,
        2425651827249892
    ],
    "dataSetId": 53722416444006,
    "sourceCreatedTime": 77683565,
    "sourceModifiedTime": 68614962,
    "securityCategories": [
        1979707127020012,
        747443067645264
    ],
    "labels": [
        {
            "externalId": "officia reprehenderit Ut"
        },
        {
            "externalId": "consectetur exercitation ipsum"
        }
    ],
    "geoLocation": {
        "type": "Feature",
        "geometry": {
            "type": "MultiPoint",
            "coordinates": []
        },
        "properties": {}
    }
}'
https://domain.com/api/v1/projects/{{project}}/files?overwrite=false

Postman Collection Item JSON

{
  "id": "initFileUpload",
  "name": "Upload file",
  "request": {
    "url": {
      "host": "{{baseUrl}}",
      "path": [
        "api",
        "v1",
        "projects",
        "{{project}}",
        "files"
      ],
      "query": [
        {
          "key": "overwrite",
          "description": "If 'overwrite' is set to true, and the POST body content specifies a 'externalId' field, fields for the file found for externalId can be overwritten. The default setting is false. \n\nIf metadata is included in the request body, all of the original metadata will be overwritten.\nThe actual file will be overwritten after a successful upload with the uploadUrl from the response. \nIf there is no successful upload, the current file contents will be kept. \n\nFile-Asset mappings only change if explicitly stated in the assetIds field of the POST json body. \nDo not set assetIds in request body if you want to keep the current file-asset mappings.",
          "value": "false",
          "disabled": true
        }
      ],
      "variable": [
      ]
    },
    "method": "POST",
    "header": [
      {
        "key": "api-key",
        "value": "{{api-key}}",
        "description": "An admin can create API keys in the Cognite console."
      },
      {
        "key": "content-type",
        "value": "application/json"
      }
    ],
    "description": "Create metadata information and get an upload link for a file.\n\nTo upload the file, use the uploadUrl link in the response in a separate request. \nTo upload a file, send an HTTP PUT request to the uploadUrl with the relevant 'Content-Type' and 'Content-Length' headers.\n\nIf the uploadUrl contains the string '/v1/files/gcs_proxy/', you can make a Google Cloud Storage (GCS) resumable upload request\nas documented in https://cloud.google.com/storage/docs/json_api/v1/how-tos/resumable-upload.\n\nThe uploadUrl expires after one week. \nAny file info entry that does not have the actual file uploaded within one week will be automatically deleted.",
    "body": {
      "mode": "raw",
      "raw": "{\n    \"name\": \"officia nisi\",\n    \"externalId\": \"in\",\n    \"directory\": \"et dolor\",\n    \"source\": \"pariatur dolor aliqua nostrud\",\n    \"mimeType\": \"occaecat est\",\n    \"metadata\": {},\n    \"assetIds\": [\n        4034774287403938,\n        2425651827249892\n    ],\n    \"dataSetId\": 53722416444006,\n    \"sourceCreatedTime\": 77683565,\n    \"sourceModifiedTime\": 68614962,\n    \"securityCategories\": [\n        1979707127020012,\n        747443067645264\n    ],\n    \"labels\": [\n        {\n            \"externalId\": \"officia reprehenderit Ut\"\n        },\n        {\n            \"externalId\": \"consectetur exercitation ipsum\"\n        }\n    ],\n    \"geoLocation\": {\n        \"type\": \"Feature\",\n        \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": []\n        },\n        \"properties\": {}\n    }\n}"
    }
  }
}