POST

Create Case Link

Create a new case link.

Important

Calls to this method must include the cookie .LawPanel.AuthCookie in order to identify you at user level. For more details about authentication please check this link. To obtain the cookie you can use the method Login.

Request URL

Request headers

string
Subscription key which provides access to this API.

Request body

Payload must contain information about the file link to be created.

  • string Requerid file_id: The case ID where the file will be attached. To get details of case please check this link.
  • string Requerid url: The url or link.
  • string Optional comments: The comments about the file link.

Loading...
                  {
  "type": "object",
  "properties": {
    "comments": {
      "type": "string"
    },
    "file_id": {
      "type": "string"
    },
    "url": {
      "type": "string"
    }
  },
  "example": {
    "comments": "...",
    "file_id": "c8650a60-cc9e-476c-bed9-ac3100f3db50",
    "url": "https://www.lawpanel.com"
  }
}
                  
              

Response 201

This code is returned when the case link was created successfully.

Loading...
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "file": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "number": {
          "type": "string"
        }
      }
    },
    "date_time": {
      "type": "string"
    },
    "comments": {
      "type": "string"
    },
    "url": {
      "type": "string"
    }
  }
}
* See getting started for more information on how to use this API. You can also check the API change history.