CoachAccountable API Documentation
This is the complete API documentation for connecting to the CoachAccountable API using MindCloud's Universal API. If you are new to MindCloud, start with the Introduction to see how one API can sit in front of many different apps.
MindCloud is an integration company that offers one normalized API to access 3,100+ apps from a single place. It cleans up provider-specific quirks, keeps requests and responses consistent, and centralizes authentication so you do not need to manage separate flows for every app. Browse other apps.
Meet CoachAccountable: CoachAccountable API wrapper for client, action, metric, appointment, session, agreement, invoice, engagement, course, and group workflows. Keep reading to get started.
Quickstart
Before you run your first CoachAccountable request, you need three things:
- A MindCloud account — sign in or create an account at MindCloud.
- A MindCloud API Key — create one in API Keys. Keep it on your server.
- At least one CoachAccountable connection — create or choose one in Connections. Note its
connectionId.
Every CoachAccountable action uses the same URL pattern:
https://connect.mindcloud.co/v1/universal/coachAccountable/latest/actions/{actionSlug}You need a MindCloud API Key and a CoachAccountable connection. Then call an action such as Get Account Profile:
curl --request GET \
--url "https://connect.mindcloud.co/v1/universal/coachAccountable/latest/actions/get-account-profile" \
--header "Authorization: Bearer $MINDCLOUD_API_KEY" \
--get \
--data-urlencode "connectionId=$CONNECTION_ID"Every response comes back in the same envelope, with your rows in a data array:
{
"success": true,
"data": [
{ "id": "1042", "name": "Ava" }
],
"meta": {}
}After your first request works, use Shape your requests to control arguments, pagination, filtering, fields, and errors.
Authentication
Authentication has two layers. Your MindCloud API Key authenticates the request to MindCloud, sent as a Bearer token in the Authorization header. The connectionId selects the connected CoachAccountable account that should run the action. MindCloud stores and refreshes the CoachAccountable credentials behind that connection, so you never send provider tokens with your requests.
Pass connectionId in the query string for GET and DELETE actions, and in the JSON body for POST, PUT, and PATCH actions. Keep your MindCloud API Key on your server; do not ship it in browser code, mobile apps, public repositories, or logs.
CoachAccountable actions
All 99 published actions for this CoachAccountable version. Each page documents the endpoint, arguments, and response controls.
- PUTActivate Client
- PUTActivate Group Client Member
- POSTAdd Client File From URL
- POSTAdd Client to Group
- POSTAdd Course Client Availability
- POSTAdd Metric Data
- PUTCancel Action
- PUTCancel Appointment
- PUTCancel Engagement
- PUTClear Action Reminders
- PUTClear Metric Day Data
- PUTClear Worksheet Reminders
- PUTComplete Engagement
- POSTCreate Action
- POSTCreate Appointment
- POSTCreate Client
- POSTCreate Engagement for Client
- POSTCreate Invoice
- POSTCreate Metric
- POSTCreate Session
- PUTDeactivate Client
- PUTDeactivate Group Client Member
- DELETEDelete Action
- DELETEDelete Action Project
- DELETEDelete Action Reminder
- DELETEDelete Agreement
- DELETEDelete Appointment
- DELETEDelete Client
- DELETEDelete Engagement
- DELETEDelete Invoice
- DELETEDelete Invoice Payment
- DELETEDelete Metric
- DELETEDelete Session
- DELETEDelete Worksheet
- DELETEDelete Worksheet Reminder
- POSTEnroll Client in Course
- PUTFast Forward Course Participant
- GETGet Account Profile
- GETGet Client
- GETGet Client Appointment Settings
- GETGet Client Data Activity Stats
- GETGet Client Data By Field
- GETGet Invoice
- POSTInvite Client
- POSTIssue Agreement
- GETList Action Projects
- GETList Action Reminders
- GETList Actions
- GETList Agreement Templates
- GETList Agreements
- GETList Appointment Types
- GETList Appointments
- GETList Clients
- GETList Companies
- GETList Course Availabilities
- GETList Course Client Availabilities
- GETList Course Client Participants
- GETList Course Group Participants
- GETList Courses
- GETList Engagement Templates
- GETList Engagements
- GETList Group Client Members
- GETList Group Coach Members
- GETList Groups
- GETList Invoice Payments
- GETList Invoices
- GETList Metrics
- GETList Offering Collections
- GETList Offering Submissions
- GETList Offerings
- GETList Personnel
- GETList Sessions
- GETList Worksheet Reminders
- GETList Worksheets
- PUTMark Action Done
- PUTMark Metric Complete
- PUTPause Course Participant
- POSTRecord Invoice Payment
- DELETERemove Course Client Availability
- DELETERemove Group Client Member
- PUTReopen Engagement
- PUTRewind Course Participant
- PUTSend Invoice
- PUTSet Action Reminders
- PUTSet Client Appointment Settings
- PUTSet Client Profile Extra
- PUTSet Worksheet Reminders
- PUTStop Course Participant
- PUTUncancel Action
- PUTUnmark Action Done
- PUTUnmark Metric Complete
- PUTUnpause Course Participant
- PUTUpdate Action
- PUTUpdate Client
- PUTUpdate Engagement
- PUTUpdate Invoice
- PUTUpdate Metric
- PUTUpdate Session
- POSTUpload Client File
Related apps
More Sales & CRM apps on the Universal API, behind the same REST shape. Or browse all apps.