inaturalistjs
    Preparing search index...

    Type Alias GetProjectsByIdMembersData

    type GetProjectsByIdMembersData = {
        body?: never;
        path: { id: number };
        query?: {
            page?: string;
            perPage?: string;
            role?: "curator" | "manager";
            skipCounts?: boolean;
        };
        url: "/projects/{id}/members";
    }
    Index

    Properties

    Properties

    body?: never
    path: { id: number }

    Type declaration

    • id: number

      ID of the record

    query?: {
        page?: string;
        perPage?: string;
        role?: "curator" | "manager";
        skipCounts?: boolean;
    }

    Type declaration

    • Optionalpage?: string

      Pagination page number

    • OptionalperPage?: string

      Number of results to return in a page. The maximum value is generally 200 unless otherwise noted

    • Optionalrole?: "curator" | "manager"

      Membership role

    • OptionalskipCounts?: boolean

      If counts are not needed, consider setting this to true to save on processing time, resulting in faster responses

    url: "/projects/{id}/members"