Mayson Monorepo Documentation
    Preparing search index...

    Person Tokens are single-use tokens which tokenize person information, and are used for creating or updating a Person.

    interface AccountPersonToken {
        id: string;
        object: "v2.core.account_person_token";
        created: string;
        expires_at: string;
        livemode: boolean;
        used: boolean;
    }
    Index

    Properties

    id: string

    Unique identifier for the token.

    object: "v2.core.account_person_token"

    String representing the object's type. Objects of the same type share the same value of the object field.

    created: string

    Time at which the token was created. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.

    expires_at: string

    Time at which the token will expire.

    livemode: boolean

    Has the value true if the token exists in live mode or the value false if the object exists in test mode.

    used: boolean

    Determines if the token has already been used (tokens can only be used once).