Skip to main content
GET
/
exports
/
{exportType}
List project exports
curl --request GET \
  --url https://backendapi.corbado.io/v2/exports/{exportType} \
  --header 'Authorization: Basic <encoded-value>'
{
  "exports": [
    {
      "filename": "<string>",
      "size": 123,
      "checksum": "<string>",
      "created": "<string>",
      "createdMs": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication is used to authenticate requests to the Backend API. The username is the project ID and the password is the API secret.

The project ID and API secret can be found in the Developer Panel.

Path Parameters

exportType
enum<string>
required

Type of export to list

Available options:
credentials,
connect-timeseries

Response

List of export files

exports
object[]
required