- MemberApiFp(configuration?): {
deleteMember(teamName, screenName, options?) => Promise<((axios?, basePath?) => AxiosPromise<void>)>;
getMembers(teamName, sort?, order?, page?, perPage?, options?) => Promise<((axios?, basePath?) => AxiosPromise<PaginatedMembers>)>;
}
-
Returns {
deleteMember(teamName, screenName, options?) => Promise<((axios?, basePath?) => AxiosPromise<void>)>;
getMembers(teamName, sort?, order?, page?, perPage?, options?) => Promise<((axios?, basePath?) => AxiosPromise<PaginatedMembers>)>;
}
-
deleteMember:function
- deleteMember(teamName, screenName, options?): Promise<((axios?, basePath?) => AxiosPromise<void>)>
-
Parameters
-
teamName: string
-
screenName: string
-
Optional
options: any
Returns Promise<((axios?, basePath?) => AxiosPromise<void>)>
-
getMembers:function
- getMembers(teamName, sort?, order?, page?, perPage?, options?): Promise<((axios?, basePath?) => AxiosPromise<PaginatedMembers>)>
-
Parameters
-
teamName: string
-
Optional
sort: "posts_count" | "joined" | "last_accessed"
-
Optional
order: "asc" | "desc"
-
Optional
page: number
-
Optional
perPage: number
-
Optional
options: any
Returns Promise<((axios?, basePath?) => AxiosPromise<PaginatedMembers>)>
MemberApi - functional programming interface