Company logoTrust Center Documentation
API v1 ReferenceNda acceptancesIdRevoke

Revoke NDA acceptance

Revoke a specific NDA acceptance. This marks the acceptance as revoked but does not delete it. Browse request parameters, authentication requirements,…

POST
/api/v1/nda-acceptances/{id}/revoke

Revoke a specific NDA acceptance. This marks the acceptance as revoked but does not delete it.

Authorization

bearerAuth
AuthorizationBearer <token>

API key generated in Admin Center Integrations

In: header

Path Parameters

id*string

Acceptance ID

Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/api/v1/nda-acceptances/497f6eca-6276-4993-bfeb-53cbbbba6f08/revoke" \  -H "Content-Type: application/json" \  -d '{    "reason": "Contact no longer authorized"  }'
{  "message": "NDA acceptance revoked successfully",  "acceptance": {    "id": "650e8400-e29b-41d4-a716-446655440000",    "contact": {      "id": "750e8400-e29b-41d4-a716-446655440000",      "first_name": "John",      "last_name": "Doe",      "email": "john.doe@example.com"    },    "account": {      "id": "850e8400-e29b-41d4-a716-446655440000",      "name": "Acme Corp",      "domain": "acme.com"    },    "nda_template": {      "id": "550e8400-e29b-41d4-a716-446655440000",      "title": "Standard Bilateral NDA",      "type": "bilateral"    },    "accepted_at": "2024-01-15T14:30:00Z",    "acceptance_method": "clickwrap",    "revoked_at": "2024-01-20T10:30:00Z",    "revoked_reason": "Contact no longer authorized",    "date_created": "2024-01-15T14:30:00Z"  }}

How is this guide?