---
title: "Retrieve asset creation events"
url: "https://earlyaccess.developers.bynder.com/apis/analytics-api/versions/c50f3280-b9e2-4302-9d7f-6584d3ee7b84/paths/v7-analytics-api-v1-asset-create/get"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/analytics-api/versions/c50f3280-b9e2-4302-9d7f-6584d3ee7b84.md

# Retrieve asset creation events

`GET` `/v7/analytics/api/v1/asset/create`

Retrieve asset creation events within a specified date range.

## Query parameters

- `limit` (integer, optional) - The maximum number of analytics events to retrieve. Allowed values are between 1 and 10000.
- `cursor` (string, optional) - Cursor mark returned in the response headers to be used for pagination purposes.
- `fromDateTime` (string, date-time, optional) - Retrieve create events occurred after this date.
- `toDateTime` (string, date-time, optional) - Set a date range together with the "fromDateTime" parameter.

## Responses

- `200` - Successful response

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Analytics API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}
paths:
  /v7/analytics/api/v1/asset/create:
    get:
      description: Retrieve asset creation events within a specified date range.
      parameters:
        - description: The maximum number of analytics events to retrieve. Allowed values
            are between 1 and 10000.
          in: query
          name: limit
          required: false
          schema:
            default: 1000
            example: 100
            type: integer
        - description: Cursor mark returned in the response headers to be used for
            pagination purposes.
          in: query
          name: cursor
          required: false
          schema:
            default: MA
            example: MTAwMA
            type: string
        - description: Retrieve create events occurred after this date.
          in: query
          name: fromDateTime
          required: false
          schema:
            example: 2022-01-01T01:00:00.000Z
            format: date-time
            type: string
        - description: Set a date range together with the "fromDateTime" parameter.
          in: query
          name: toDateTime
          required: false
          schema:
            example: 2022-06-01T01:00:00.000Z
            format: date-time
            type: string
      responses:
        "200":
          content:
            application/json:
              examples:
                example-1:
                  summary: Example response
                  value: >
                    [
                      {
                        "id": "62de6d714e29485a81824fe3",
                        "eventType": "asset.create",
                        "userId": "1A84D758-2B3A-141F-8F07D71AA1F223BD",
                        "dateTime": "2021-11-15T10:07:57.781+00:00",
                        "assetId": "CA510292-E39E-4B28-AB6444CDD2B1C5C0",
                        "assetType": "image",
                        "assetName": "Product Insights",
                        "assetAudit": "ACCEPTED",
                        "fileName": "CA510292-E39E-4B28-AB6444CDD2B1C5C___Product Insights"
                      },
                      {
                        "id": "62de6d714e29485a81824fe4",
                        "eventType": "asset.create",
                        "userId": "1A84D758-2B3A-141F-8F07D71AA1F223BD",
                        "dateTime": "2021-11-15T10:08:18.752+00:00",
                        "assetId": "C58ED8C6-6B09-4CD6-B71C32C6715834F1",
                        "assetType": "image",
                        "assetName": "Reporting Schedule Nov 2022",
                        "assetAudit": "ACCEPTED",
                        "fileName": "C58ED8C6-6B09-4CD6-B71C32C6715834F1___Reporting Schedule Nov 2022"
                      }
                    ]
              schema:
                items:
                  properties:
                    assetAudit:
                      example: ACCEPTED
                      type: string
                    assetId:
                      example: CA510292-E39E-4B28-AB6444CDD2B1C5C0
                      type: string
                    assetName:
                      example: Product Insights
                      type: string
                    assetType:
                      example: image
                      type: string
                    dateTime:
                      example: 2021-11-15T10:07:57.781Z
                      format: date-time
                      type: string
                    eventType:
                      example: asset.create
                      type: string
                    fileName:
                      example: CA510292-E39E-4B28-AB6444CDD2B1C5C___Product Insights
                      type: string
                    id:
                      example: 62de6d714e29485a81824fe3
                      type: string
                    userId:
                      example: 1A84D758-2B3A-141F-8F07D71AA1F223BD
                      type: string
                  type: object
                type: array
          description: Successful response
          headers:
            Next-Cursor:
              description: The next cursor value to send if you want to continue with your
                paginated request.
              schema:
                example: MTAwMA
                type: string
            Next-Url:
              description: The next URL path to query if you want to continue with your
                paginated request.
              schema:
                example: /api/v1/asset/create?limit=1000&cursor=MTAwMA
                type: string
      summary: Retrieve asset creation events
      tags:
        - Asset Usage V1
security:
  - permanentToken:
      - analytics.api:read
  - oauth2:
      - analytics.api:read
components:
  securitySchemes:
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
```
