curl --request GET \
--url https://api.example.com/v1/legal-contracts \
--header 'Authorization: <api-key>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"type": "<string>",
"files": [
"<string>"
],
"color": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"legalParts": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"meta": {
"total": 123,
"lastPage": 123,
"currentPage": 123,
"perPage": 123,
"prev": 123,
"next": 123
}
}List legal contract
curl --request GET \
--url https://api.example.com/v1/legal-contracts \
--header 'Authorization: <api-key>'{
"data": [
{
"id": "<string>",
"name": "<string>",
"type": "<string>",
"files": [
"<string>"
],
"color": "<string>",
"startDate": "<string>",
"endDate": "<string>",
"legalParts": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"meta": {
"total": 123,
"lastPage": 123,
"currentPage": 123,
"perPage": 123,
"prev": 123,
"next": 123
}
}Was this page helpful?