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

    Type Alias PostSharegroupMembersData

    type PostSharegroupMembersData = {
        body?: { label: string; token: string };
        path: { sharegroupId: number };
        query?: never;
        url: "images/sharegroups/{sharegroupId}/members";
    }
    Index

    Properties

    Properties

    body?: { label: string; token: string }

    Type Declaration

    • label: string

      The share group member's descriptive name.

    • token: string

      The single-use JWT membership token encoded as a string. It consists of three parts: header, payload, and signature. If needed, the user should Create a token and share it with the group owner before joining.

    path: { sharegroupId: number }

    Type Declaration

    • sharegroupId: number

      The share group's unique identifier assigned after creating it. Not to be confused with the group's uuid.

    query?: never
    url: "images/sharegroups/{sharegroupId}/members"