Contract Activity

Description

Activity performed on a contract.

Properties

Property Description
contractActivityAction

The type of activity.

Status Description
studio-edited The contract was edited by the studio.
sent-client The contract was sent to the client.
client-viewed The client viewed the contract.
client-signed The client signed the contract.
studio-signed The studio signed the contract.
created

The date on which this activity took place.

OpenAPI Schema

The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.

{
  "description": "Activity performed on a contract.",
  "properties": {
    "contractActivityAction": {
      "description": "The type of activity.\n\n| Status | Description |\n| ------ | ----------- |\n| `studio-edited` | The contract was edited by the studio. |\n| `sent-client` | The contract was sent to the client. |\n| `client-viewed` | The client viewed the contract. |\n| `client-signed` | The client signed the contract. |\n| `studio-signed` | The studio signed the contract. |",
      "enum": [
        "studio-edited",
        "sent-client",
        "client-viewed",
        "client-signed",
        "studio-signed"
      ],
      "type": "string"
    },
    "created": {
      "description": "The date on which this activity took place.",
      "format": "date-time",
      "type": "string"
    }
  },
  "type": "object"
}