You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 4, 2025. It is now read-only.
description: Date the file was requested to be signed
1330
+
example: '2021-12-31 22:45:50'
1331
+
requested_by:
1332
+
$ref: '#/components/schemas/basicAccount'
1333
+
pages:
1334
+
type: array
1335
+
description: |-
1336
+
List with all pages on image format.
1337
+
This property only will be returned when the query param format=image
1338
+
items:
1339
+
$ref: '#/components/schemas/pdfPage'
1340
+
visibleElements:
1341
+
description: Visible elements on document
1342
+
allOf:
1343
+
- $ref: '#/components/schemas/signatureElement'
1344
+
- $ref: '#/components/schemas/elementCoordinate'
1345
+
- type: object
1346
+
properties:
1347
+
signRequestId:
1348
+
type: string
1349
+
nullable: true
1350
+
description: Representative ID of relation between file and user
1351
+
example: johndoe
1352
+
elementId:
1353
+
type: integer
1354
+
minimum: 1
1355
+
example: 1
1356
+
required:
1357
+
- elementId
1358
+
signers:
1359
+
type: array
1360
+
items:
1361
+
type: object
1362
+
properties:
1363
+
signed:
1364
+
type: string
1365
+
pattern: '\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}'
1366
+
description: 'Signing date, when signed'
1367
+
example: '2021-12-31 22:45:50'
1368
+
nullable: true
1369
+
displayName:
1370
+
type: string
1371
+
description: The person display name
1372
+
nullable: true
1373
+
example: John
1374
+
fullName:
1375
+
type: string
1376
+
description: The person full name
1377
+
example: John Doe
1378
+
nullable: true
1379
+
me:
1380
+
type: boolean
1381
+
description: It's me?
1382
+
example: true
1383
+
identifyMethods:
1384
+
type: array
1385
+
items:
1386
+
type: object
1387
+
properties:
1388
+
method:
1389
+
type: string
1390
+
example: account
1391
+
description: The identify method name
1392
+
value:
1393
+
type: string
1394
+
example: signer1
1395
+
description: The value that identify the signer in the authentication method
1396
+
email:
1397
+
type: string
1398
+
format: email
1399
+
description: Unique email to identify signer. This property will only exist when it is a request made by the person who requested the document to be signed.
1400
+
example: user@test.coop
1401
+
uid:
1402
+
type: string
1403
+
description: Nextcloud user id of who requested the file to be signed.
1404
+
example: johndoe
1405
+
signRequestId:
1406
+
type: integer
1407
+
description: Relation between file and user
1408
+
example: 1
1409
+
required:
1410
+
- signed
1411
+
- fullName
1412
+
- me
1413
+
- signRequestId
1414
+
settings:
1415
+
$ref: '#/components/schemas/signSettings'
1416
+
messages:
1417
+
type: array
1418
+
items:
1419
+
type: object
1420
+
properties:
1421
+
type:
1422
+
type: string
1423
+
enum:
1424
+
- success
1425
+
- info
1426
+
- warning
1427
+
- danger
1428
+
description: Type of message
1429
+
message:
1430
+
type: string
1431
+
description: Text of message
1432
+
required:
1433
+
- name
1434
+
- file
1435
+
- status
1436
+
- settings
1437
+
'404':
1438
+
description: Request failed
1439
+
content:
1440
+
application/json:
1441
+
schema:
1442
+
type: object
1443
+
properties:
1444
+
settings:
1445
+
$ref: '#/components/schemas/signSettings'
1446
+
action:
1447
+
type: integer
1448
+
description: Numeric code representing what action should be taken with the response
0 commit comments