inaturalistjs
    Preparing search index...

    Type Alias GetPostsData

    type GetPostsData = {
        body?: never;
        path?: never;
        query?: {
            login?: string;
            page?: string;
            perPage?: string;
            projectId?: number;
        };
        url: "/posts";
    }
    Index

    Properties

    Properties

    body?: never
    path?: never
    query?: { login?: string; page?: string; perPage?: string; projectId?: number }

    Type declaration

    • Optionallogin?: string

      Return posts by this user

    • Optionalpage?: string

      Pagination page number

    • OptionalperPage?: string

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

    • OptionalprojectId?: number

      Return posts from this project

    url: "/posts"