Memberstack

Learn how to use Memberstack with Composio

Overview

SLUG

MEMBERSTACK

Description

Memberstack is a platform that enables developers to add user authentication, payments, and member management to their websites without writing backend code.

Authentication Details

generic_api_key
stringRequired

Tools

SLUG: MEMBERSTACK_CREATE_MEMBER

Tool to create a new member in your application. use after gathering email, password, optional plans, custom fields, metadata, and redirect.

Action Parameters

customFields
object
email
stringRequired
json
object
loginRedirect
string
metaData
object
password
stringRequired
plans
array

Action Response

data
objectRequired
error
string
successful
booleanRequired

SLUG: MEMBERSTACK_DELETE_MEMBER

Tool to permanently delete a member from your application. use after confirming you no longer need the member's data and have the member id.

Action Parameters

cancelStripeSubscriptions
boolean
deleteStripeCustomer
boolean
id
stringRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

SLUG: MEMBERSTACK_GET_MEMBER

Tool to retrieve a specific member by id or email. use when you need to fetch member profile details for a given identifier (id or email). example: "get member mem sb 12345".

Action Parameters

id_or_email
stringRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

SLUG: MEMBERSTACK_LIST_MEMBERS

Tool to retrieve a paginated list of all members in your application. use when you need to iterate through members with cursor-based pagination.

Action Parameters

after
integer
limit
integerDefaults to 50
order
stringDefaults to ASC

Action Response

data
arrayRequired
endCursor
integer
error
string
hasNextPage
booleanRequired
successful
booleanRequired
totalCount
integerRequired

SLUG: MEMBERSTACK_LIST_PLANS

Tool to list all available membership plans. use when you need to retrieve plan ids and details before assigning or comparing plans.

Action Parameters

Action Response

data
objectRequired
error
string
successful
booleanRequired

SLUG: MEMBERSTACK_REMOVE_FREE_PLAN

Tool to remove a free plan from an existing member. use after confirming the member's subscription status. example: "remove free plan pln sb 67890 from member mem sb 12345".

Action Parameters

id
stringRequired
planId
stringRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

SLUG: MEMBERSTACK_UPDATE_MEMBER

Tool to update an existing member's information. use when you have a member id and need to modify their email, customfields, metadata, json data, or loginredirect.

Action Parameters

customFields
object
email
string
id
stringRequired
json
object
loginRedirect
string
metaData
object

Action Response

data
objectRequired
error
string
successful
booleanRequired