Beeminder
beeminderBeeminder is an online goal-tracking service that uses financial incentives—pledge money on your objectives and forfeit it if you don’t keep up—to help you achieve your goals.
Acciones disponibles (5)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Authenticate and Redirect UserBEEMINDER_AUTHENTICATE_AND_REDIRECT_USERAcciónTool to authenticate a user and redirect them to a given url. use when sending a user into the beeminder web ui directly after oauth or token validation.
BEEMINDER_AUTHENTICATE_AND_REDIRECT_USERAcciónTool to authenticate a user and redirect them to a given url. use when sending a user into the beeminder web ui directly after oauth or token validation.
Parámetros de entrada
usernamestringBeeminder username or 'me' to refer to the authenticated user
redirect_to_urlstringObligatorioFully qualified URL to redirect the user to after successful authentication. Must be URL-encoded.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create ChargeBEEMINDER_CREATE_CHARGEAcciónTool to create a new charge for a user. use when billing a user outside of goal pledges; supports dryrun mode.
BEEMINDER_CREATE_CHARGEAcciónTool to create a new charge for a user. use when billing a user outside of goal pledges; supports dryrun mode.
Parámetros de entrada
notestringExplanation for why the charge is made
amountnumberObligatorioAmount to charge the user, in USD
dryrunbooleanIf true, returns the charge JSON without creating the charge
user_idstringObligatorioBeeminder username of the user to charge
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get all goalsBEEMINDER_GET_ALL_GOALSAcciónTool to retrieve all goals for a specified user. use when listing a user's active goals.
BEEMINDER_GET_ALL_GOALSAcciónTool to retrieve all goals for a specified user. use when listing a user's active goals.
Parámetros de entrada
usernamestringObligatorioBeeminder username whose goals to retrieve. Use 'me' for the authenticated user.
Parámetros de salida
dataobject[]ObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Archived GoalsBEEMINDER_GET_ARCHIVED_GOALSAcciónTool to retrieve archived goals for a specified user. use when you need to inspect a user's past archived goals.
BEEMINDER_GET_ARCHIVED_GOALSAcciónTool to retrieve archived goals for a specified user. use when you need to inspect a user's past archived goals.
Parámetros de entrada
usernamestringObligatorioBeeminder username whose archived goals to retrieve. Use 'me' for the authenticated user.
Parámetros de salida
dataobject[]ObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Beeminder User InformationBEEMINDER_GET_USER_INFORMATIONAcciónTool to retrieve information about a specified beeminder user. use when you need to fetch details like timezone, goals, urgency, or deleted goals after authenticating successfully.
BEEMINDER_GET_USER_INFORMATIONAcciónTool to retrieve information about a specified beeminder user. use when you need to fetch details like timezone, goals, urgency, or deleted goals after authenticating successfully.
Parámetros de entrada
skinnybooleanWhen used with diff_since, return slim goal attributes and only the most recent datapoint for each goal.
usernamestringObligatorioBeeminder username to retrieve information for.
diff_sinceintegerUnix timestamp in seconds; return only goals and datapoints created or updated since this time.
associationsbooleanWhether to include full goal and datapoint objects instead of only slugs.
datapoints_countintegerNumber of most recent datapoints to return for each goal.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not