Filevine · Example Payload

Filevine Create Deadline Example

LegalCase ManagementMattersIntakeDocumentsLOISWebhooksLegal AIPersonal InjuryMass Torts

Filevine Create Deadline Example is an example object payload from Filevine, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.filevine.io/core/projects/7771234/deadlines",
    "headers": {
      "Authorization": "Bearer eyJhbGciOiJSUzI1NiIs...",
      "Content-Type": "application/json"
    },
    "body": {
      "name": "Statute of Limitations",
      "dueDate": "2027-08-14T00:00:00Z",
      "assigneeId": 444221,
      "reminders": [
        { "triggerOffsetMinutes": -43200, "notifyUserIds": [444221, 444222] }
      ]
    }
  },
  "response": {
    "status": 201,
    "body": {
      "deadlineId": 55590011,
      "projectId": 7771234,
      "name": "Statute of Limitations",
      "dueDate": "2027-08-14T00:00:00Z",
      "status": "open",
      "assigneeId": 444221
    }
  }
}