Get Signed Agreements
GET /v1/signed-agreement
Retrieves a list of all signed agreements. Returns records of agreements that have been accepted by users, including user information, signing metadata, and the agreement data.
Response Example
[
{
"user_id": "61643fc9f7d8c9afb52c54b4",
"tenant": "61643fc9f7d8c9afb52c5567",
"username": "user@example.com",
"full_name": "Example User",
"data": [
{
"_id": "agreement-id-1",
"content": {
"en": {
"title": "User Agreement",
"description": "Terms and conditions.",
"body": "{\"blocks\":[{\"key\":\"a1b2c\",\"text\":\"Agreement content.\",\"type\":\"unstyled\",\"depth\":0,\"inlineStyleRanges\":[],\"entityRanges\":[],\"data\":{}}],\"entityMap\":{}}"
}
},
"services": ["service-id-1"],
"active": true,
"global": false,
"reconsent": false,
"tenant": "tenant-id-1",
"type": "USER",
"created": "2025-04-02T16:01:45.209Z",
"updated": "2025-08-14T16:51:16.832Z"
}
]
}
]