inaturalistjs
    Preparing search index...

    Type Alias GetUsersByIdProjectsData

    type GetUsersByIdProjectsData = {
        body?: never;
        path: { id: number };
        query?: {
            page?: string;
            perPage?: string;
            projectType?: "traditional" | "collection" | "umbrella";
            ruleDetails?: true;
        };
        url: "/users/{id}/projects";
    }
    Index

    Properties

    Properties

    body?: never
    path: { id: number }

    Type declaration

    • id: number

      ID of the record

    query?: {
        page?: string;
        perPage?: string;
        projectType?: "traditional" | "collection" | "umbrella";
        ruleDetails?: true;
    }

    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

    • OptionalprojectType?: "traditional" | "collection" | "umbrella"

      Specify the type of project to return

    • OptionalruleDetails?: true

      Return more information about project rules, for example return a full taxon object instead of simply an ID

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