@akamai/openapi-ts
    Preparing search index...

    Type Alias PostSharegroupTokensResponses

    type PostSharegroupTokensResponses = {
        "200": {
            created: string;
            expiry: string | null;
            label: string | null;
            sharegroup_label: string;
            sharegroup_uuid: string;
            status: "pending" | "active" | "revoked" | "expired";
            token: string;
            token_uuid: string;
            updated: string | null;
            valid_for_sharegroup_uuid: string;
        };
    }
    Index

    Properties

    Properties

    "200": {
        created: string;
        expiry: string | null;
        label: string | null;
        sharegroup_label: string;
        sharegroup_uuid: string;
        status: "pending" | "active" | "revoked" | "expired";
        token: string;
        token_uuid: string;
        updated: string | null;
        valid_for_sharegroup_uuid: string;
    }

    The share group membership token's details.

    Type Declaration

    • Readonlycreated: string

      Read-only When the token was created.

    • Readonlyexpiry: string | null

      Read-only When this token expires.

    • label: string | null

      The token's descriptive name.

    • Readonlysharegroup_label: string

      Read-only The share group's descriptive name.

    • Readonlysharegroup_uuid: string

      Read-only The share group's unique identifier.

    • status: "pending" | "active" | "revoked" | "expired"

      Read-only The membership token's status:

      • pending: The token has been created but is not yet active.
      • active: The token is currently active and usable.
      • revoked: The token has been deleted and is no longer valid.
      • expired: The token has passed its validity period and is no longer usable.
    • Readonlytoken: string

      Read-only The single-use JWT membership token encoded as a string. It consists of three parts: header, payload, and signature. Shared image groups owners can use it to Add members to a share group.

    • Readonlytoken_uuid: string

      Read-only The membership token's unique identifier.

    • Readonlyupdated: string | null

      Read-only When the token was last updated.

    • Readonlyvalid_for_sharegroup_uuid: string

      Read-only The unique identifier of the share group you created a token for.