Security Protocols

Create a security protocol

post

Creates a security protocol linked to an address of your address book.

Authorizations
Body
addressnumberRequired

Id of the address the security protocol should be linked.

Example: 1
documentstring Β· byteRequired

File content. Use content-type with multipart/form-data value to the header of the request to send a document.

document_titlestringOptional

Filename

Responses
201
Create successful
application/json
post
POST /api/v4/security-protocols/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 59

{
  "address": 1,
  "document": "Ynl0ZXM=",
  "document_title": "text"
}
201

Create successful

{
  "pk": 1,
  "address": 1,
  "document": "https://storage.googleapis.com/dashdoc-media/media/shipments/aabd42eb.png",
  "document_title": "text",
  "updated": "2025-07-08T15:57:53.285Z",
  "has_been_seen_recently": true
}

Partially update a security protocol

patch
Authorizations
Path parameters
pkintegerRequired

Dashdoc's internal id

Body
addressnumberOptional

Id of the address that the security protocol should be linked to.

Example: 1
documentstring Β· byteOptional

File content. Use content-type with multipart/form-data value to the header of the request to send a document.

document_titlestringOptional

Filename

Responses
200
Get successful
application/json
patch
PATCH /api/v4/security-protocols/{pk}/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 59

{
  "address": 1,
  "document": "Ynl0ZXM=",
  "document_title": "text"
}
200

Get successful

{
  "pk": 1,
  "address": 1,
  "document": "https://storage.googleapis.com/dashdoc-media/media/shipments/aabd42eb.png",
  "document_title": "text",
  "updated": "2025-07-08T15:57:53.285Z",
  "has_been_seen_recently": true
}

Last updated

Was this helpful?