---
title: "Update party"
method: PUT
path: "/documents/{document}/parties/{party}"
tags: ["Document Operations"]
---

# Update party

`PUT /documents/{document}/parties/{party}`

<small>Requires an API token with the **Document Manager** role.</small>

Updates the details of a [party](/#parties) on a [document](/#documents).

> **Note:** When updating a party that is linked to an account party (where `is_internal_party` is `true`), only
> `reference` can be updated. Attempting to update other fields will cause the request to be rejected with a
> validation error.

## Path parameters

- `document` string, required
- `party` string, required

## Request body

- UpdatePartyRequest — All fields are optional. Only the fields to be updated need to be provided.
  - `reference` string — A generic reference for the party
  - `entity_name` string, nullable — The actual name of the party. i.e. name of the company or person. Must be non-null in order for the document to [proceed to the signing stage](/operations/v1.documents.stage-transitions.signing)
  - `address` string, nullable — The party's address
  - `scope` 'internal' | 'internal_and_external'

## Response `200`

`DocumentPartyResource`

- object
  - `data` DocumentPartyResource, required
    - `uuid` string, required
    - `ref_uuid` string, required — If the document containing this party was created from a template, this identifier will be the same as the `ref_uuid` of the corresponding party in the source template.
    - `reference` string, nullable, required — A generic reference for the party
    - `entity_name` string, nullable, required — The actual name of the party. May be null if the party was created via a Template's "set later" option
    - `address` string, nullable, required
    - `scope` 'internal' | 'internal_and_external', required
    - `is_internal_party` boolean, required — Indicates whether this party is linked to an account party (internal) or is standalone (external)
    - `is_ready_for_signing` boolean, required — `true` indicates that an external party has indicated they are ready to sign
    - `ready_for_signing_at` string, date-time, nullable, required
    - `created_at` string, date-time, nullable, required
    - `updated_at` string, date-time, nullable, required
    - `signatories` SignatorySnippetResource[] — These are the users who will sign on behalf of this party during the `signing` stage
      - `uuid` string, required
      - `first_name` string, nullable, required
      - `last_name` string, nullable, required
      - `email` string, nullable, required
      - `mobile_phone` string, nullable, required — Mobile phone number, in E.164 format
      - `title` string, nullable, required
      - `profile_photo_url` string, nullable, required
      - `signing_order` integer, nullable, required — When sequential signing is enabled, signatories will sign in ascending order of their `signing_order`
      - `has_account_user` boolean, required — `true` if the signatory has a fynk user belonging to your account

## Other responses

- `401` — Unauthenticated
- `403` — Authorization error
- `404` — Not found
- `409` — The resource's current state prevents the requested change
- `422` — Validation error

---

[API](https://skmtc.dev/fynk/apis/fynk-api-reference.md) · [All operations](https://skmtc.dev/fynk/apis/fynk-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/fynk/fynk-api-reference/revisions/9657a6757f59/schema)
