Skip to main content
POST
/
apps
/
gov-es
/
v1
/
entry
/
{silo_entry_id}
/
{system}
/
agreement
cURL
curl --request POST \
  --url https://api.invopop.com/apps/gov-es/v1/entry/{silo_entry_id}/{system}/agreement \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": "aSDinaTvuI8gbWludGxpZnk=",
  "signature": "digital"
}
'
Once the previously generated agreement has been signed by the end-user, upload to Invopop so that it will be stored as an attachment to the silo entry.

Authorizations

Authorization
string
header
required

Use the Bearer scheme with a valid JWT token to authenticate requests. Example: Authorization: Bearer <token>

Path Parameters

silo_entry_id
string
required

ID of the org.Party silo entry to upload the agreement for.

Example:

"5b45453c-cdd0-11ed-afa1-0242ac120002"

system
enum<string>
required

System in which the party is being registered.

Available options:
sii

Body

application/json
data
string<byte>
required

Base64 encoded binary data of the signed PDF agreement. Must be of type application/pdf.

signature
enum<string>
required

Type of signature used to sign the agreement. Use one of the following options:

  • digital - Signed using a digital certificate belonging to the supplier.
  • hand - Physically signed by hand, and scanned.
Available options:
digital,
hand

Response

202

No content