Company logoTrust Center Documentation
API v1 ReferenceNda acceptances

List NDA acceptances

Retrieve all NDA acceptances for the authenticated tenant

GET
/api/v1/nda-acceptances
AuthorizationBearer <token>

JWT token obtained from login endpoint

In: header

Query Parameters

account_id?string

Filter by account ID

Formatuuid
contact_id?string

Filter by contact ID

Formatuuid
template_id?string

Filter by template ID

Formatuuid

Response Body

curl -X GET "https://app.orbiqhq.com/api/v1/nda-acceptances?account_id=497f6eca-6276-4993-bfeb-53cbbbba6f08&contact_id=497f6eca-6276-4993-bfeb-53cbbbba6f08&template_id=497f6eca-6276-4993-bfeb-53cbbbba6f08"
curl -X GET https://app.orbiqhq.cloud/api/v1/nda-acceptances \  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "acceptances": [
    {
      "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",
      "date_created": "2024-01-15T14:30:00Z"
    }
  ]
}
{
  "error": "Unauthorized"
}
{
  "error": "Internal server error"
}

How is this guide?