LawVu ContractUser API
The ContractUser API from LawVu — 1 operation(s) for contractuser.
The ContractUser API from LawVu — 1 operation(s) for contractuser.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/lawvu-contractuser-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: LawVu Contracts Contract User API
description: Apis for contract resources
version: '1.0'
servers:
- url: https://api-sandbox.lawvu.com/contract-apis
description: Sandbox API
- url: https://api.lawvu.com/contract-apis
description: Production API
tags:
- name: ContractUser
paths:
/v1/contracts/{contractId}/users:
post:
tags:
- ContractUser
summary: Add user to a contract
description: Adds a user to a contract as a member
operationId: post-v1-contracts-contractid-users
parameters:
- name: contractId
in: path
description: The ID of the contract
required: true
schema:
type: integer
format: int32
requestBody:
description: The ID of the user to add into a contract
content:
application/json-patch+json:
schema:
$ref: '#/components/schemas/AssignContractUser'
example:
UserId: User id test
application/json:
schema:
$ref: '#/components/schemas/AssignContractUser'
example:
UserId: User id test
text/json:
schema:
$ref: '#/components/schemas/AssignContractUser'
example:
UserId: User id test
application/*+json:
schema:
$ref: '#/components/schemas/AssignContractUser'
example:
UserId: User id test
required: true
responses:
'204':
description: No Content
get:
tags:
- ContractUser
summary: Get contract users
description: Returns the users that are assigned to the contract
operationId: get-v1-contracts-contractid-users
parameters:
- name: contractId
in: path
description: The contract id
required: true
schema:
type: integer
format: int32
- name: skip
in: query
description: The number of results to skip
schema:
type: integer
format: int32
- name: filtering.field
in: query
description: Field to filter by (optional)
schema:
type: string
- name: filtering.operator
in: query
description: Operator used for filtering (optional)
schema:
enum:
- eq
- neq
- lt
- lte
- gt
- gte
- startswith
- endswith
- contains
- doesnotcon
- isnull
type: string
- name: filtering.value
in: query
description: Value to filter by (optional)
schema:
type: string
- name: sorting.direction
in: query
description: Set the sorting direction
schema:
enum:
- asc
- desc
type: string
- name: sorting.field
in: query
description: Set the sorting fields
schema:
type: string
- name: take
in: query
description: 'The maximum number of contract users to return<p>Default: 50</p>'
schema:
type: integer
format: int32
default: 50
responses:
'200':
description: Success
content:
text/plain:
schema:
$ref: '#/components/schemas/ContractUserDataSourceResult'
application/json:
schema:
$ref: '#/components/schemas/ContractUserDataSourceResult'
text/json:
schema:
$ref: '#/components/schemas/ContractUserDataSourceResult'
components:
schemas:
AssignContractUser:
required:
- userId
type: object
properties:
userId:
type: string
additionalProperties: false
ContractUser:
type: object
properties:
userId:
type:
- string
- 'null'
userFirstname:
type:
- string
- 'null'
userLastname:
type:
- string
- 'null'
userOrganisationId:
type:
- integer
- 'null'
format: int32
userOrganisationName:
type:
- string
- 'null'
userHasPicture:
type: boolean
userPictureCacheId:
type: integer
format: int32
userFullName:
type:
- string
- 'null'
userInitials:
type:
- string
- 'null'
additionalProperties: false
ContractUserDataSourceResult:
type: object
properties:
data:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/ContractUser'
description: Represents a single page of processed data.
total:
type: integer
description: The total number of records available.
format: int32
additionalProperties: false