Interface RequestCodeInput

The input of the requestCode endpoint.

interface RequestCodeInput {
    appId: string;
    appName: string;
    appVersion: string;
}

Properties

appId: string

The id of your app. Must be all lowercase with only alphanumeric characters, no spaces and between 2 and 32 characters. Regex: ^[a-z0-9_\-]{2,32}$

appName: string

The name of your app. Must be between 2 and 48 characters

appVersion: string

The version of your app. Must be semantic versioning compatible.