# GetRegistrations

Return a list of registrations.

`GET /filingassist/workflow-registrations`

**API:** Registration Details
**Tag:** Registrations
**API Version:** 1.0.0
**Base URL:** https://www.businesslicenses.com
**Authentication:** Bearer token

Source: https://developer.avalara.com/products/registration-and-licensing/api/registration-and-license-details/methods/Registrations/GetRegistrations/

## Description

Returns a paginated list of completed registrations, including registrations marked as No License Required.

## Parameters

| Name | Type | In | Required | Description |
|---|---|---|---|---|
| `avalara-version` | string | header | Yes | Specifies the API version to use. |
| `key` | string | query | No | Key provided by Avalara. Required only for partners retrieving their registration information. |
| `$skip` | integer | query | No | Number of records to skip before returning results. Used with $top for pagination. |
| `$top` | integer | query | No | Maximum number of records to return. Used with $skip for pagination. |
| `count` | string | query | No | Indicates whether to return the total record count. Returns -1 if the number of records is too large. |
| `countOnly` | string | query | No | Used with count. If both are true, returns only the count and does not return the list of records. |
| `X-Avalara-Client` | string | header | No | Identifies the software you are using to call this API. |
| `X-Correlation-ID` | string | header | No | Supports request correlation across requests using the X-Correlation-ID header. |

## Responses

| Status | Description | Schema |
|---|---|---|
| 200 | List of registration IDs. |  |
| 401 | Unauthorized |  |

## Example Request

```bash
curl -X GET "https://www.businesslicenses.com/filingassist/workflow-registrations" \
  -H "Authorization: Basic <credentials>" \
  -H "Accept: application/json"
```