Back to Collection Items
        
void ChilkatSample(void)
    {
    http.put_AuthToken(L"<access_token>");    success = http.HttpNoBody(L"DELETE",L"https://domain.com/crm/v2/Sales_Orders/{{record_id}}/Attachments/{{attachment_id}}",resp);
    }
        Curl Command
        curl -X DELETE
	-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2/Sales_Orders/{{record_id}}/Attachments/{{attachment_id}}
        Postman Collection Item JSON
        {
  "name": "Sales Orders",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{access-token}}",
          "type": "string"
        }
      ]
    },
    "method": "DELETE",
    "header": [
    ],
    "url": {
      "raw": "{{api-domain}}/crm/v2/Sales_Orders/{{record_id}}/Attachments/{{attachment_id}}",
      "host": [
        "{{api-domain}}"
      ],
      "path": [
        "crm",
        "v2",
        "Sales_Orders",
        "{{record_id}}",
        "Attachments",
        "{{attachment_id}}"
      ]
    },
    "description": "To delete a file attached to a record."
  },
  "response": [
  ]
}