# Certifier

Certifier is a platform that enables organizations to create, manage, and issue digital certificates and credentials.

- **Category:** documents
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 9
- **Triggers:** 0
- **Slug:** `CERTIFIER`
- **Version:** 20260227_00

## Tools

### Create, issue, and send credential

**Slug:** `CERTIFIER_CREATE_ISSUE_SEND_CREDENTIAL`

Tool to create, issue, and send a credential in a single request. Use when group ID and recipient details are ready.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `groupId` | string | Yes | The unique identifier of the group to which the credential belongs. |
| `issueDate` | string | No | ISO 8601 date string when the credential is issued (YYYY-MM-DD). |
| `recipient` | object | Yes | Recipient details: name and email. |
| `expiryDate` | string | No | ISO 8601 date string when the credential expires (YYYY-MM-DD). |
| `customAttributes` | object | No | Key-value map of custom attributes (tag → text value). |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Attributes

**Slug:** `CERTIFIER_LIST_ATTRIBUTES`

Tool to list all attributes available for credentials. Use when you need to retrieve attribute definitions with pagination.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `limit` | integer | No | Maximum number of attributes to return. Defaults to 20. Must be between 1 and 100. |
| `cursor` | string | No | Cursor from a previous response to fetch the next page. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Credential Interactions

**Slug:** `CERTIFIER_LIST_CREDENTIAL_INTERACTIONS`

Tool to list credential interactions. Use when you need to retrieve interaction events for a specific credential, with optional filtering and pagination.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `limit` | integer | No | Maximum number of interactions to return. Defaults to 20. |
| `cursor` | string | No | Cursor from previous response to fetch subsequent pages. |
| `credentialId` | string | No | Filter interactions by this credential's ID. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Credentials

**Slug:** `CERTIFIER_LIST_CREDENTIALS`

Tool to list credentials. Use after authentication to retrieve paginated credentials.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `limit` | integer | No | Maximum number of credentials to return. Defaults to 20. |
| `cursor` | string | No | Cursor from previous response to fetch subsequent pages. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Designs

**Slug:** `CERTIFIER_LIST_DESIGNS`

Tool to list all designs. Use after authentication to retrieve certificate and badge designs with pagination.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `limit` | integer | No | Maximum number of designs to return. Defaults to 20. Must be between 1 and 100. |
| `cursor` | string | No | Cursor from a previous response to fetch the next page. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Email Templates

**Slug:** `CERTIFIER_LIST_EMAIL_TEMPLATES`

Tool to list all email templates available for credential delivery. Use when you need to retrieve available email templates for sending credentials.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `limit` | integer | No | Maximum number of email templates to return. Defaults to 20. |
| `cursor` | string | No | Cursor from previous response to fetch subsequent pages. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### List Groups

**Slug:** `CERTIFIER_LIST_GROUPS`

Tool to list all groups. Use when you need to retrieve groups with pagination (limit and cursor).

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `limit` | integer | No | Maximum number of groups to return. Defaults to 20. Must be between 1 and 100. |
| `cursor` | string | No | Cursor from a previous response to fetch the next page. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Search Credentials

**Slug:** `CERTIFIER_SEARCH_CREDENTIALS`

Tool to search for credentials using advanced filters and criteria. Use when you need to find specific credentials based on status, recipient, dates, or other properties. Supports complex queries with logical operators (AND, OR, NOT).

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `sort` | object | No | Sort configuration for search results. |
| `limit` | integer | No | Maximum number of results per page. Defaults to 20 if not specified. |
| `cursor` | string | No | Navigation token for pagination. Use the cursor from previous response to fetch next page. |
| `filter` | object | Yes | Complex query object using logical operators (AND, OR, NOT) to filter credentials. Structure: {'AND': [conditions]} or {'OR': [conditions]} or {'NOT': condition}. Operators can be nested. Use empty AND array {'AND': []} to match all records. Searchable fields: id, publicId, groupId, status, recipientId, recipient.name, recipient.email, issueDate, expiryDate, createdAt, updatedAt. String fields support: equals, contains, startsWith, endsWith, in. Date/DateTime fields support: equals, lt, lte, gt, gte. Example: {'AND': [{'status': {'equals': 'issued'}}, {'recipient': {'email': {'endsWith': '@example.com'}}}]} |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Send a Credential

**Slug:** `CERTIFIER_SEND_CREDENTIAL`

Tool to send a published credential via email. Use after confirming the credential is published.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | The unique identifier of the credential to send. |
| `deliveryMethod` | string | Yes | Delivery method; only 'email' is supported. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
