Filevine · Example Payload

Filevine Create Project Example

LegalCase ManagementMattersIntakeDocumentsLOISWebhooksLegal AIPersonal InjuryMass Torts

Filevine Create Project 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",
    "headers": {
      "Authorization": "Bearer eyJhbGciOiJSUzI1NiIs...",
      "Content-Type": "application/json"
    },
    "body": {
      "projectTypeId": 41,
      "projectName": "Doe v. Acme Corp.",
      "clientId": 9912345,
      "phaseName": "Intake"
    }
  },
  "response": {
    "status": 201,
    "body": {
      "projectId": 7771234,
      "projectName": "Doe v. Acme Corp.",
      "number": "PI-2026-00184",
      "projectTypeId": 41,
      "clientId": 9912345,
      "phaseName": "Intake",
      "isArchived": false,
      "createdDate": "2026-05-25T17:02:11Z",
      "modifiedDate": "2026-05-25T17:02:11Z"
    }
  }
}