Party API (1.0)

Download OpenAPI specification:Download

Introduction

Party API allows an agent to manage parties which are various stakeholders in the realty business. Parties can be associated with leads, assignments, clearing etc.

Parties are divided into different types:

  • Person - An individual person.
  • Estate - An estate of an deceased person. The estate has shareholders who can be individuals and also other estates.
  • Organization - An organization which can be a company, public entity, NGO or any other legal entity.

Each party type has its own endpoint with POST, PUT and GET methods.

Compliance verification for a party is required by KYC (Know Your Customer) and AML (Anti-Money Laundering) process. The verification results are handled through /partyComplianceVerifications endpoint. Compliance must be verified for each person attached to the party.

There also is an endpoint /parties to query parties with different search criteria. To find out whether an individual person is already defined as party, use can use the GET /parties endpoint for this purpose.

Contact

If you have any questions, comments or feedback regarding our APIs, please contact developer@ovipro.fi.

Party

Party API allows you to fetch parties by using different search criteria.

Fetch parties

Fetch parties by using different search criteria. You can combine the search criteria, for example to search for active organization parties for a specified agent office.

Authorizations:
bearerAuth
query Parameters
partyId
Array of strings <uuid> (PartyId)
Example: partyId=1803ca58-50ea-422b-a1f8-330289b67fe2

Search by the party identifier to fetch the specified party.

partyTypeCode
Array of strings (PartyTypeCode)
Items Enum: "PERSON_PARTY" "ESTATE_PARTY" "ORGANIZATION_PARTY"
Example: partyTypeCode=PERSON_PARTY

Search by the party role to fetch the specified types of parties.

partyRoleCode
Array of strings (PartyRoleCode)
Items Enum: "PROCUREMENT_VISITOR" "BUYER_CUSTOMER" "SELLER_CUSTOMER" "ACCOUNTING_CUSTOMER" "CONSENTOR" "TENANT" "LANDLORD" "ESTATE_SHAREHOLDER" "ATTORNEY_IN_FACT" "INVESTOR"
Example: partyRoleCode=SELLER_CUSTOMER

Search by the party roles to fetch parties having specific party roles.

partyTag
Array of strings
Example: partyTag=Yksityissijoittaja

Search by the party tags to fetch parties having specific tags provided by the agent.

partyName
string
Example: partyName=Matti Virtanen

Search by a name to fetch parties with this name or persons within the parties with this name.

officialId
string
Example: officialId=FI02472382

Search by the official identifier fetch parties with this identifier or persons within the parties with this identifier.

schemeIdForOfficialId
string (SchemeId)
Example: schemeIdForOfficialId=VAT

Scheme id identifies what type of identifier is being searched for. This query parameter can be defined together with the officialId parameter.

agentId
Array of strings <uuid> (AgentId)
Example: agentId=5d2a6d47-da73-4b11-8940-27cffabb6de5

Search by the agent identifiers to get a list of parties the agents are responsible for.

agencyOfficeId
Array of strings <uuid> (AgencyOfficeId)
Example: agencyOfficeId=212114ec-819e-483c-a8e0-f82289ac6e19

Search by the agency office identifiers to get a list of parties that belong to certain agency offices.

freeTextSearch
string
Example: freeTextSearch=Lakitoimisto Tampere

Search by a free text to match parties with the given search text.

email
string
Example: email=liisa.lehtinen@example.com

Search by an email address to match parties associated with the given email address.

startIndex
integer <int32> >= 0
Example: startIndex=20

Paginate returned parties starting from this index. Index starts from 0.

endIndex
integer <int32> >= 1
Example: endIndex=40

Paginate returned parties ending to this index.

modifiedAfter
string <date> (Date)
Example: modifiedAfter=2021-12-31

Search with specific modified after date to get a list of parties which have been modified after and including the specified date.

sort
Array of strings
Example: sort=partyTypeCode|asc

Sort parties based on the specified fields. Each fields must also include a sort order as follows:

sort={fieldName}|{asc|desc}&sort={anotherFieldName}|{asc|desc}

header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Responses

Response samples

Content type
application/json
{
  • "totalCount": 3,
  • "parties": [
    ]
}

Delete party

Deletes a party and ALL related entities (for example assignments and trade settlements). Party can be deleted if there is no retention basis that prevents deletion.

Authorizations:
bearerAuth
path Parameters
partyId
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: ddc25849-7bc7-43c0-9c3b-602cb03f7806

Unique party identifier in UUID format.

header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Responses

Response samples

Content type
application/json
{ }

Person Party

Person Party API allows you to create, update and fetch person as a party.

Create a person party

Create a new person party.

Authorizations:
bearerAuth
header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Request Body schema: application/json

Contains the details for the person party.

required
object (Party)

Party details, including the official identifiers.

required
object (PersonWrite)

Person details.

creationTime
string <date-time> (CreationTime)

Creation time of the party. The creation time is automatically set, if this field is not provided.

Responses

Request samples

Content type
application/json
{
  • "party": {
    },
  • "personParty": {
    }
}

Response samples

Content type
application/json
{
  • "partyId": "1ba7f781-77a0-451b-a2fa-5f293050c940"
}

Fetch a person party

Fetch details for the specified person party.

Authorizations:
bearerAuth
path Parameters
partyId
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: ddc25849-7bc7-43c0-9c3b-602cb03f7806

Unique party identifier in UUID format.

header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Responses

Response samples

Content type
application/json
{
  • "partyId": "7ee90cd7-1189-4166-88d8-5117c7333639",
  • "party": {
    },
  • "personParty": {
    },
  • "creationTime": "2021-05-13T16:07:23+00:00",
  • "modificationTime": "2021-05-15T08:04:44+00:00"
}

Update a person party

Update the details of the person party whose id is given as a path variable.

Authorizations:
bearerAuth
path Parameters
partyId
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: ddc25849-7bc7-43c0-9c3b-602cb03f7806

Unique party identifier in UUID format.

header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Request Body schema: application/json

Contains the person party to be updated.

partyId
required
string <uuid> (PartyId) ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...

Unique identifier for the party in the UUID format.

required
object (Party)

Party details, including the official identifiers.

required
object (PersonWrite)

Person details.

Responses

Request samples

Content type
application/json
{
  • "partyId": "7ee90cd7-1189-4166-88d8-5117c7333639",
  • "party": {
    },
  • "personParty": {
    }
}

Response samples

Content type
application/json
{
  • "errorCode": "BAD_REQUEST_PARAMETERS",
  • "message": "Invalid request parameters",
  • "description": "Request parameters are missing or have invalid type.",
  • "errors": [
    ]
}

Estate Party

Estate Party API allows you to create, update and fetch estate as a party.

Create an estate party

Create a new estate party.

Authorizations:
bearerAuth
header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Request Body schema: application/json

Contains the details for the estate party.

required
object (Party)

Party details, including the official identifiers.

required
object (EstatePartyWrite)

Estate party details.

creationTime
string <date-time> (CreationTime)

Creation time of the party. The creation time is automatically set, if this field is not provided.

Responses

Request samples

Content type
application/json
{
  • "party": {
    },
  • "estateParty": {
    }
}

Response samples

Content type
application/json
{
  • "partyId": "1ba7f781-77a0-451b-a2fa-5f293050c940"
}

Fetch an estate party

Fetch details for the specified estate party.

Authorizations:
bearerAuth
path Parameters
partyId
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: ddc25849-7bc7-43c0-9c3b-602cb03f7806

Unique party identifier in UUID format.

header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Responses

Response samples

Content type
application/json
{
  • "partyId": "9ae034b7-9461-448a-ad86-f99025247119",
  • "party": {
    },
  • "estateParty": {
    },
  • "creationTime": "2021-03-13T12:07:23+00:00",
  • "modificationTime": "2021-08-15T08:04:44+00:00"
}

Update an estate party

Update the details of the estate party whose id is given as a path variable.

Authorizations:
bearerAuth
path Parameters
partyId
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: ddc25849-7bc7-43c0-9c3b-602cb03f7806

Unique party identifier in UUID format.

header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Request Body schema: application/json

Contains the estate party to be updated.

partyId
required
string <uuid> (PartyId) ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...

Unique identifier for the party in the UUID format.

required
object (Party)

Party details, including the official identifiers.

required
object (EstatePartyWrite)

Estate party details.

Responses

Request samples

Content type
application/json
{
  • "partyId": "9ae034b7-9461-448a-ad86-f99025247119",
  • "party": {
    },
  • "estateParty": {
    }
}

Response samples

Content type
application/json
{
  • "errorCode": "BAD_REQUEST_PARAMETERS",
  • "message": "Invalid request parameters",
  • "description": "Request parameters are missing or have invalid type.",
  • "errors": [
    ]
}

Organization Party

Organization Party API allows you to create, update and fetch organisation as a party.

Create an organization party

Create a new organization party.

Authorizations:
bearerAuth
header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Request Body schema: application/json

Contains the details for the organization party.

required
object (Party)

Party details, including the official identifiers.

required
object (OrganizationPartyWrite)

Organization party details.

creationTime
string <date-time> (CreationTime)

Creation time of the party. The creation time is automatically set, if this field is not provided.

Responses

Request samples

Content type
application/json
{
  • "party": {
    },
  • "organizationParty": {
    }
}

Response samples

Content type
application/json
{
  • "partyId": "1ba7f781-77a0-451b-a2fa-5f293050c940"
}

Fetch an organization party

Fetch details for the specified organization party.

Authorizations:
bearerAuth
path Parameters
partyId
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: ddc25849-7bc7-43c0-9c3b-602cb03f7806

Unique party identifier in UUID format.

header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Responses

Response samples

Content type
application/json
{
  • "partyId": "a0ab6e4c-0c88-4f58-94b7-a97796735135",
  • "party": {
    },
  • "organizationParty": {
    },
  • "creationTime": "2021-03-13T12:07:23+00:00",
  • "modificationTime": "2021-08-15T08:04:44+00:00"
}

Update an organization party

Update the details of the organization party whose id is given as a path variable.

Authorizations:
bearerAuth
path Parameters
partyId
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: ddc25849-7bc7-43c0-9c3b-602cb03f7806

Unique party identifier in UUID format.

header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Request Body schema: application/json

Contains the organization party to be updated.

partyId
required
string <uuid> (PartyId) ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...

Unique identifier for the party in the UUID format.

required
object (Party)

Party details, including the official identifiers.

required
object (OrganizationPartyWrite)

Organization party details.

Responses

Request samples

Content type
application/json
{
  • "partyId": "a0ab6e4c-0c88-4f58-94b7-a97796735135",
  • "party": {
    },
  • "organizationParty": {
    }
}

Response samples

Content type
application/json
{
  • "errorCode": "BAD_REQUEST_PARAMETERS",
  • "message": "Invalid request parameters",
  • "description": "Request parameters are missing or have invalid type.",
  • "errors": [
    ]
}

Party Compliance Verification

Party Compliance Verification API allows you to create and fetch compliance verifications for a party.

Create a party compliance verification

Create a new party compliance verification.

Authorizations:
bearerAuth
header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Request Body schema: application/json

Contains the details for the party compliance verification.

required
object (ComplianceVerification)

Compliance verification details as part of KYC (Known Your Customer) and AML (Anti-Money Laundering) process.

Responses

Request samples

Content type
application/json
{
  • "complianceVerification": {
    }
}

Response samples

Content type
application/json
{
  • "complianceVerificationId": "5314ed18-b9cf-42dc-b889-4af9ad8071a2"
}

Fetch party compliance verifications

Fetch party compliance verifications by using different search criteria. You can combine the search criteria, for example to search for only the latest verification for a party.

Authorizations:
bearerAuth
query Parameters
partyId
string <uuid> (PartyId) ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: partyId=1803ca58-50ea-422b-a1f8-330289b67fe2

Search by the party identifier to fetch the all the compliance verifications for the specified party.

latest
boolean
Example: latest=true

Search to find the latest compliance verification for the specified party. This parameter can be used together with partyId query parameter.

header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Responses

Response samples

Content type
application/json
{
  • "totalCount": 2,
  • "complianceVerifications": [
    ]
}

Update a compliance verification

Update the details of the compliance verification whose id is given as a path variable.

Authorizations:
bearerAuth
path Parameters
complianceVerificationId
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: ddc25849-7bc7-43c0-9c3b-602cb03f7806

Unique compliance verification identifier in UUID format.

header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Request Body schema: application/json

Contains the compliance verification to be updated.

complianceVerificationId
required
string <uuid> (ComplianceVerificationId) ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...

Unique identifier for the party compliance verification id in the UUID format.

required
object (ComplianceVerificationUpdate)

Compliance verification details as part of KYC (Known Your Customer) and AML (Anti-Money Laundering) process.

Responses

Request samples

Content type
application/json
{
  • "complianceVerificationId": "659aa81f-b0cb-46f0-8d5a-b90ab01e4431",
  • "complianceVerification": {
    }
}

Response samples

Content type
application/json
{
  • "errorCode": "BAD_REQUEST_PARAMETERS",
  • "message": "Invalid request parameters",
  • "description": "Request parameters are missing or have invalid type.",
  • "errors": [
    ]
}

Generate and save compliance verification PDF-document

Generates a PDF document with party compliance verification form content and saves it to Document API. If this compliance verification has unsigned compliance verification PDF it will be overwritten.

Authorizations:
bearerAuth
path Parameters
complianceVerificationId
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: ddc25849-7bc7-43c0-9c3b-602cb03f7806

Unique compliance verification identifier in UUID format.

header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Request Body schema: application/json

Empty body

object (PostPartyComplianceVerificationPdfRequest)

Responses

Request samples

Content type
application/json
{ }

Response samples

Content type
application/json
{
  • "complianceVerificationDocumentId": "d68b6dbe-9772-4950-aac5-7b3579eb82ad"
}

GDPR

GDPR API allows you to view parties retention bases

Fetch retention bases for Party

Fetch summary of retention bases for given party.

Authorizations:
bearerAuth
path Parameters
partyId
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: ddc25849-7bc7-43c0-9c3b-602cb03f7806

Unique party identifier in UUID format.

header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Responses

Response samples

Content type
application/json
{
  • "partyId": "73460928-e87d-4fd8-a246-3d9a2531be7f",
  • "partyCreationTime": "2023-11-14T23:59:59Z",
  • "legalRetentionBases": {
    },
  • "technicalRetentionBases": {
    }
}

Fetch parties that should be removed

Fetch parties that have no ongoing activity or active retention basis and should therefore be removed. Parties are ordered by time when the last retention basis for each party was expired.

Authorizations:
bearerAuth
query Parameters
agencyOfficeId
required
Array of strings <uuid> (AgencyOfficeId) non-empty
Example: agencyOfficeId=7bdffe48-0077-4de0-acd4-d9b9b1ab49f8
startIndex
integer <int32> >= 0
Default: 0
Example: startIndex=20

Paginate returned documents starting from this index. Index starts from 0.

size
integer <int32> [ 1 .. 200 ]
Default: 100
Example: size=40

Documents returned per page.

header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Responses

Response samples

Content type
application/json
{
  • "totalCount": 2,
  • "parties": [
    ]
}

Notes

Notes API allows you to create, fetch, update and delete notes.

Create a new note

Create a new note. One realty can have maximum 20 notes.

Authorizations:
bearerAuth
header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Request Body schema: application/json

Request body contains details of the note to be created.

note
required
string

The content of the note

partyId
required
string <uuid>

The party id related to the note.

Responses

Request samples

Content type
application/json
{
  • "note": "This is a note.",
  • "partyId": "123e4567-e89b-12d3-a456-426655440000"
}

Response samples

Content type
application/json
{
  • "noteId": "c6d2288d-2ecb-448a-aef3-fd5144920e0b"
}

Search notes

Search notes with specified parameters.

Authorizations:
bearerAuth
query Parameters
realtyId
required
string <uuid>

Identifier of the realty for which notes are searched.

header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Responses

Response samples

Content type
application/json
{
  • "totalCount": 1,
  • "notes": [
    ]
}

Update a note

Update a note.

Authorizations:
bearerAuth
path Parameters
noteId
required
string <uuid>
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

Identifier of the note

header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Request Body schema: application/json

Request body contains details of the note to be updated.

note
required
string

The content of the note

Responses

Request samples

Content type
application/json
{
  • "note": "This is a note."
}

Response samples

Content type
application/json
{
  • "errorCode": "BAD_REQUEST_PARAMETERS",
  • "message": "Invalid request parameters",
  • "description": "Request parameters are missing or have invalid type.",
  • "errors": [
    ]
}

Delete a note

Delete a note.

Authorizations:
bearerAuth
path Parameters
noteId
required
string <uuid>
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

Identifier of the note

header Parameters
Request-ID
required
string <uuid> ^([0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[8...
Example: 9031d1c5-7d40-41dd-b2b8-7919a2fc4fe9

A unique id which identifies the HTTP request. The value of this header must be created by the client. This identifier is used for troubleshooting purposes.

Responses

Response samples

Content type
application/json
{
  • "errorCode": "BAD_REQUEST_PARAMETERS",
  • "message": "Invalid request parameters",
  • "description": "Request parameters are missing or have invalid type.",
  • "errors": [
    ]
}