Credit Repair Cloud ACTION
Create Client
Create Client See the documentation.
- Action
- Writes data
- API key
- SDK
- MCP
IMPLEMENTATION
Call this tool
Connect a user's Credit Repair Cloud account once, then configure and run Create Client from your backend or agent.
import { PipedreamClient } from "@pipedream/sdk"
const pd = new PipedreamClient({
projectId: process.env.PIPEDREAM_PROJECT_ID!,
clientId: process.env.PIPEDREAM_CLIENT_ID!,
clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
projectEnvironment: "production",
})
const result = await pd.actions.run({
id: "credit_repair_cloud-create-client",
externalUserId: "{external_user_id}", // any stable ID for this user in your system
configuredProps: {
credit_repair_cloud: { authProvisionId: "apn_xxxxxxx" },
type: "Type",
firstname: "First Name",
},
})
console.log(result)curl -X POST https://api.pipedream.com/v1/connect/{project_id}/actions/run \
-H "Content-Type: application/json" \
-H "X-PD-Environment: production" \
-H "Authorization: Bearer {access_token}" \
-d '{
"external_user_id": "{external_user_id}",
"id": "credit_repair_cloud-create-client",
"configured_props": {
"credit_repair_cloud": { "authProvisionId": "apn_xxxxxxx" },
"type": "Type",
"firstname": "First Name"
}
}'// accessToken: mint a short-lived token with the Connect SDK — see the MCP guide
const transport = new StreamableHTTPClientTransport(
new URL("https://remote.mcp.pipedream.net/v3"),
{
requestInit: {
headers: {
Authorization: `Bearer ${accessToken}`,
"x-pd-project-id": "{project_id}",
"x-pd-environment": "production",
"x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
"x-pd-app-slug": "credit_repair_cloud",
},
},
},
)
const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)
const { tools } = await mcp.listTools()
// listTools() hands your model this tool's input schema, so it can
// fill the arguments itself:
const result = await mcp.callTool({
name: "credit_repair_cloud-create-client",
arguments: {
type: "Type",
firstname: "First Name",
},
})SCHEMA
Inputs
Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.
| Property | Type | Description |
|---|---|---|
type Type | string | The type of the user. Required |
firstname First Name | string | First name should be in string format. Required |
lastname Last Name | string | Last name should be in string format. Required |
middlename Middle Name | string | Middle name should be in string format. Optional |
suffix Suffix | string | Suffix should be in string format. Optional |
email Email | string | Email should be in email format. Optional |
phone_home Home Phone | integer | Home Phone should be in 10 digit number format. Optional |
phone_work Work Phone | integer | Work Phone should be in 10 digit number format. Optional |
phone_mobile Mobile Phone | string | Mobile Phone format should be in (999) 999-9999. Optional |
street_address Street Address | string | Street Address should be in string format. Optional |
city City | string | City should be in string format. Optional |
state State | string | State should be in abbreviations format. Optional |
post_code Post Code | integer | Post code should be in number format. Optional |
ssno SSN | integer | Social Security no.should be in 4 digit number format. Optional |
birth_date Birth Date | string | Birth date should be in in mm/dd/yyyy format. Optional |
memo Memo | string | Memo should be in string format. Optional |
previous_mailing_address Previous Mailing Address | string | Previous mailing address should be in string format. Previous mailing address (only if at current mailing address for less than 2 years) Optional |
previous_city Previous City | string | Previous City should be in string format. Optional |
previous_state Previous State | string | Previous State should be in abbreviations format. Optional |
previous_zip Previous Zip | integer | Previous zip should be in number format. Optional |
client_assigned_to Client Assigned To | string | Name of team members with comma separator for assing team members to client. Note: Pls login and go to https://app.creditrepaircloud.com/mycompany/team and Copy team member name in xml Optional |
client_portal_access Client Portal Access | string | Portal Access for client. Values should be on or off https://secureclientaccess.com. on = Client can access portal off = Client can not access portal Optional |
client_userid Client User ID | string | Userid same as email Note: Only accepted if client_portal_access is on Optional |
client_agreement Client Agreement | string | Agreement name should be in alphanumeric string. Note: Pls login and go to https://app.creditrepaircloud.com/mycompany/agreement and Copy agreement name in xml. Note: Only accepted if client_portal_access is on Optional |
send_setup_password_info_via_email Send Setup Password Info Via Email | string | Syes = System will send login information via email and instructions for setting password to client. no = System will not send login information via email and instructions for setting password to client. Note: Only accepted if client_portal_access is on Optional |
referred_by_firstname Referred By First Name | string | Referred by first name should be in string format. Optional |
referred_by_lastname Referred By Last Name | string | Referred by last name should be in string format. Optional |
referred_by_email Referred By Email | string | Email should be in email format. Optional |
REFERENCE
Tool details
Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.
- Registry key
- credit_repair_cloud-create-client
- Version
- 0.0.2
- App
- Credit Repair Cloud
- Authentication
- API key
- Read-only
- No
- Destructive
- No
- Open world
- Yes
- Source
- View on GitHub ↗