# Add CCs in batch. This endpoint allows you to add multiple CCs at once for efficient processing. **POST /api/v1/ccs/batch** Sample request: POST /api/v1/signings/{signingId}/CCs/batch [ { "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "signingId": "12345678-1234-1234-1234-123456789012", "firstName": "John", "middleName": "D", "lastName": "Doe", "email": "john.doe@example.com", "displayOrder": 1, "externalId": "EXT1234", "transactionId": "9b74f03d-71d4-4911-a0d4-60c720bacea1", "saveToContacts": true }, ... [more CCs] ] ## Servers - https://api.lwolf.com/authentisign: https://api.lwolf.com/authentisign () ## Parameters ### Headers - **externalId** (string(uuid)) The external ID from header. ### Body: application/json (array[object]) A list of CC data transfer objects to be added. - **id** (string(uuid)) - **signingId** (string(uuid)) - **firstName** (string) - **middleName** (string | null) - **lastName** (string) - **email** (string | null) - **displayOrder** (integer(int32)) - **externalId** (string | null) - **transactionId** (string(uuid) | null) - **saveToContacts** (boolean | null) ## Responses ### 200 Success ### 400 Bad Request #### Body: application/json (object) - **type** (string | null) - **title** (string | null) - **status** (integer(int32) | null) - **detail** (string | null) - **instance** (string | null) ### 404 Not Found #### Body: application/json (object) - **type** (string | null) - **title** (string | null) - **status** (integer(int32) | null) - **detail** (string | null) - **instance** (string | null) ### default Error #### Body: application/json (object) - **type** (string | null) - **title** (string | null) - **status** (integer(int32) | null) - **detail** (string | null) - **instance** (string | null) [Powered by Bump.sh](https://bump.sh)