---
title: "Updates the jurisdiction information about a notary."
method: PUT
path: "/v2.1/current_user/notary/jurisdictions/{jurisdictionId}"
tags: ["NotaryJurisdiction"]
---

# Updates the jurisdiction information about a notary.

`PUT /v2.1/current_user/notary/jurisdictions/{jurisdictionId}`

Updates the jurisdiction information about a notary.

The following restrictions apply:

- The current user must be a notary.
- The `jurisdictionId` path parameter must be a jurisdiction that the notary is registered for.
- The `jurisdictionId` path parameter must match the request body's `jurisdiction.jurisdictionId`.

The request body must have a full `jurisdiction` object for the jurisdiction property.
The best way to do this is to use `getNotaryJurisdiction` to obtain the current values and update the properties you want to change.

For example, assume `getNotaryJurisdiction` returns this:

```
{
    "jurisdiction": {
        "jurisdictionId": "15",
        "name": "Iowa",
        "county": "",
        "enabled": "true",
        "countyInSeal": "false",
        "commissionIdInSeal": "true",
        "stateNameInSeal": "true",
        "notaryPublicInSeal": "true",
        "allowSystemCreatedSeal": "true",
        "allowUserUploadedSeal": "false"
    },
    "commissionId": "123456",
    "commissionExpiration": "2020-08-31T07:00:00.0000000Z",
    "registeredName": "Bob Notary",
    "county": "Adams",
    "sealType": "system_created"
}
```

If you want to change the name of the notary from "Bob Notary" to "Robert Notary", your request body would be:

```
{
    "jurisdiction": {
        "jurisdictionId": "15",
        "name": "Iowa",
        "county": "",
        "enabled": "true",
        "countyInSeal": "false",
        "commissionIdInSeal": "true",
        "stateNameInSeal": "true",
        "notaryPublicInSeal": "true",
        "allowSystemCreatedSeal": "true",
        "allowUserUploadedSeal": "false"
    },
    "commissionId": "123456",
    "commissionExpiration": "2020-08-31T07:00:00.0000000Z",
    "registeredName": "Robert Notary",
    "county": "Adams",
    "sealType": "system_created"
}
```

## Path parameters

- `jurisdictionId` string, required

## Request body

- NotaryJurisdiction — A notary jurisdiction.
  - `commissionExpiration` string — The expiration date of the notary's commission in format: `MM/DD/YYYY`.
  - `commissionId` string — The notary's commission identification. This varies from jurisdiction to jurisdiction.
  - `county` string — The county that the commission is valid in.
  - `errorDetails` ErrorDetails — This object describes errors that occur. It is only valid for responses and ignored in requests.
    - `errorCode` string — The code associated with the error condition.
    - `message` string — A brief message describing the error condition.
  - `jurisdiction` Jurisdiction — Describes the jurisdiction of a notary. This is read-only object.
    - `allowSystemCreatedSeal` string — When **true,** the seal can be generated by the platform.
    - `allowUserUploadedSeal` string — When **true,** the seal can be uploaded by the user.
    - `commissionIdInSeal` string — When **true,** the notary's `comissionId` appears in the seal.
    - `county` string — The county of the jurisdiction.
    - `countyInSeal` string — When **true,** the county name appears in the seal.
    - `enabled` string — When **true,** this jurisdiction is enabled.
    - `jurisdictionId` string — The ID of the jurisdiction. The following jurisdictions are supported: - `5 - California` - `6 - Colorado` - `9 - Florida` - `10 - Georgia` - `12 - Idaho` - `13 - Illinois` - `14 - Indiana` - `15 - Iowa` - `17 - Kentucky` - `23 - Minnesota` - `25 - Missouri` - `30 - New Jersey` - `32 - New York` - `33 - North Carolina` - `35 - Ohio` - `37 - Oregon` - `38 - Pennsylvania` - `40 - South Carolina` - `43 - Texas` - `44 - Utah` - `47 - Washington` - `48 - West Virginia` - `49 - Wisconsin` - `62 - Florida Commissioner of Deeds`
    - `name` string — The name of the jurisdiction. Typically the state name.
    - `notaryPublicInSeal` string — When **true,** the name of the notary appears in the seal.
    - `stateNameInSeal` string — When **true,** the name of the state appears in the seal.
  - `registeredName` string — The registered name of the notary.
  - `sealType` string — The seal type used for this juridiction. - `not_available` - `system_created` - `user_uploaded`

## Response `200`

Successful response.

## Other responses

- `400` — Error encountered.

---

[API](https://skmtc.net/docusign/apis/docusign-esignature-rest-api.md) · [All operations](https://skmtc.net/docusign/apis/docusign-esignature-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/docusign/docusign-esignature-rest-api/revisions/77f1998c313d/schema)
