Skip to content

Commit 07f3a70

Browse files
Fixing links
1 parent dc7990f commit 07f3a70

File tree

9 files changed

+24
-20
lines changed

9 files changed

+24
-20
lines changed

docs-v2/pages/account/billing-settings.mdx

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,38 +6,40 @@ You'll find information on your usage data (for specific [Pipedream limits](/wor
66

77
## Subscription
88

9-
You can upgrade to [paid plans](https://pipedream.com/pricing) from this section.
10-
119
If you've already upgraded, you'll see an option to **Manage Subscription** here, which directs you to your personal Stripe portal. Here, you can change your payment method, review the details of previous invoices, and more.
1210

1311
## Usage
1412

15-
[Credits](/pricing/#credits) are Pipedream's billable unit, and users on the [free tier](/pricing/#free-tier) are limited on the number of daily free credits allocated. The **Usage** section displays a chart of the daily credits across a historical range of time to provide insight into your usage patterns.
13+
[Credits](/pricing/#credits-and-billing) are Pipedream's billable unit, and users on the [free plan](/pricing/#free-plan) are limited on the number of daily free credits allocated. The **Usage** section displays a chart of the daily credits across a historical range of time to provide insight into your usage patterns.
14+
15+
<Callout type="warning">
16+
Credit usage from [Connect](/connect) is not yet reflected in this section.
17+
</Callout>
1618

1719
Hover over a specific column in the chart to see the number of credits run for that specific day:
1820

1921
![Daily credits tooltip](/images/account/daily-invocations-tooltip.png)
2022

21-
_Click_ on a specific column to see credits for that day, broken out by workflow / source:
23+
Click on a specific column to see credits for that day, broken out by workflow / source:
2224

2325
![Credits broken out by workflow / source](/images/account/usage-by-resource.png)
2426

2527
Users on the free tier will see the last 30 days of usage in this chart. Users on [paid plans](https://pipedream.com/pricing) will see the cumulative usage tied to their current billing period.
2628

2729
## Compute Budget
2830

29-
Control the maximum number of compute credits permitted on your account with an _Credit Budget_.
31+
Control the maximum number of credits permitted on your account with a **Credit Budget**.
3032

31-
This will restrict your account-wide usage to the specified number of [credits](/pricing/#credits) on a monthly or daily basis. The compute budget does not apply to credits incurred by [dedicated workers](/workflows/building-workflows/settings/#eliminate-cold-starts).
33+
This will restrict your workspace-wide usage to the specified number of [credits](/pricing/#credits-and-billing) on a monthly or daily basis. The compute budget does not apply to credits incurred by [dedicated workers](/workflows/building-workflows/settings/#eliminate-cold-starts) or Pipedream Connect.
3234

33-
To enable this feature, _click_ on the toggle and define your maximum number of credits in the period.
35+
To enable this feature, click on the toggle and define your maximum number of credits in the period.
3436

3537
<Callout type="info">
36-
Due to how credits are accrued, there may be cases where your credit usage may _slightly_ go over the cap.
38+
Due to how credits are accrued, there may be cases where your credit usage may go slightly over the cap.
3739

3840
In an example scenario, with a cap set at 20 credits and a long-running workflow that uses 10 credits per run, it's possible that two concurrent events trigger the workflow, and the cap won't apply until after the concurrent events are processed.
3941
</Callout>
4042

4143
## Limits
4244

43-
For users on the [Free tier](/pricing/#free-tier), this section displays your usage towards your [credits quota](/workflows/limits/#daily-credits-limit) for the current UTC day.
45+
For users on the [Free tier](/pricing/#free-plan), this section displays your usage towards your [credits quota](/workflows/limits/#daily-credits-limit) for the current UTC day.

docs-v2/pages/connect/api.mdx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -235,10 +235,6 @@ curl -X POST "https://api.pipedream.com/v1/connect/{your_project_id}/actions/run
235235

236236
## API Reference
237237

238-
### Invoke workflows
239-
240-
You can use the SDK to [invoke workflows on behalf of any end user](/connect/workflows/). **Write one workflow, run it for all of your users**.
241-
242238
### Tokens
243239

244240
Your app will initiate the account connection flow for your end users in your frontend. To securely scope connection to a specific end user, on your server, **you retrieve a short-lived token for that user**, and return that token to your frontend.
@@ -3726,3 +3722,9 @@ curl -X PUT \
37263722
]
37273723
}
37283724
```
3725+
3726+
### Workflows
3727+
3728+
#### Invoke workflows
3729+
3730+
You can use the SDK to [invoke workflows on behalf of any end user](/connect/workflows/). **Write one workflow, run it for all of your users**.

docs-v2/pages/glossary.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ You can restrict access to connected accounts to specific individuals or share w
104104

105105
### Credit
106106

107-
Pipedream charges one credit per 30 seconds of compute time at 256MB megabytes of memory (the default) per workflow execution. Credits are also charged for [dedicated workers](#dedicated-workers). [See the docs](/pricing/#credits) for more details.
107+
Pipedream charges one credit per 30 seconds of compute time at 256MB megabytes of memory (the default) per workflow execution. Credits are also charged for [dedicated workers](#dedicated-workers). [See the docs](/pricing/#credits-and-billing) for more details.
108108

109109
### Custom domain
110110

docs-v2/pages/pricing/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ If an active workflow isn't executed in a billing period no credit usage is incu
110110

111111
#### Source credit usage
112112

113-
When an [event source](/workflows/building-workflows/triggers/) triggers a workflow, **the source execution is included for free.** This includes workspaces on the [Free Tier](/pricing/#free-tier).
113+
When an [event source](/workflows/building-workflows/triggers/) triggers a workflow, **the source execution is included for free.** This includes workspaces on the [Free plan](/pricing/#free-plan).
114114

115115
When a source is configured as a workflow trigger, the core value is in the workflow. You won't be charged for two credits (one to run the source, one to run the workflow) when the workflow contains the core logic.
116116

docs-v2/pages/workflows/building-workflows/code/nodejs/delay.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ One credit is used to initially start the workflow, then the second credit is us
5353
<Callout type="info">
5454
Exact credit usage depends on duration and memory configuration
5555
56-
If your workflow's [execution timeout limit](/workflows/building-workflows/settings/#execution-timeout-limit) is set to longer than [default limit](/workflows/limits/#time-per-execution), it may incur more than two [credits](/pricing/#credits) when using `pd.flow.delay`.
56+
If your workflow's [execution timeout limit](/workflows/building-workflows/settings/#execution-timeout-limit) is set to longer than [default limit](/workflows/limits/#time-per-execution), it may incur more than two [credits](/pricing/#credits-and-billing) when using `pd.flow.delay`.
5757
</Callout>
5858
5959
## `cancel_url` and `resume_url`

docs-v2/pages/workflows/building-workflows/code/nodejs/rerun.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ These functions will only suspend and resume when run in production.
256256

257257
## Credits when using `suspend` / `rerun`
258258

259-
You are not charged for the time your workflow is suspended during a `$.flow.rerun` or `$.flow.suspend`. Only when workflows are resumed will compute time count toward [credit usage](/pricing/#credits).
259+
You are not charged for the time your workflow is suspended during a `$.flow.rerun` or `$.flow.suspend`. Only when workflows are resumed will compute time count toward [credit usage](/pricing/#credits-and-billing).
260260

261261
<Callout type="warning">
262262
When a suspended workflow reawakens, it will reset the credit counter.

docs-v2/pages/workflows/building-workflows/code/python/delay.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ One credit is used to initially start the workflow, then the second credit is us
5151
<Callout type="info">
5252
Exact credit usage depends on duration and memory configuration
5353

54-
If your workflow's [execution timeout limit](/workflows/building-workflows/settings/#execution-timeout-limit) is set to longer than [default limit](/workflows/limits/#time-per-execution), it may incur more than two [credits](/pricing/#credits) when using `pd.flow.delay`.
54+
If your workflow's [execution timeout limit](/workflows/building-workflows/settings/#execution-timeout-limit) is set to longer than [default limit](/workflows/limits/#time-per-execution), it may incur more than two [credits](/pricing/#credits-and-billing) when using `pd.flow.delay`.
5555
</Callout>
5656

5757
## `cancel_url` and `resume_url`

docs-v2/pages/workflows/building-workflows/code/python/rerun.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ These functions will only suspend and resume when run in production.
170170

171171
## Credits usage when using `pd.flow.suspend` / `pd.flow.rerun`
172172

173-
You are not charged for the time your workflow is suspended during a `pd.flow.suspend` or `pd.flow.rerun`. Only when workflows are resumed will compute time count toward [credit usage](/pricing/#credits).
173+
You are not charged for the time your workflow is suspended during a `pd.flow.suspend` or `pd.flow.rerun`. Only when workflows are resumed will compute time count toward [credit usage](/pricing/#credits-and-billing).
174174

175175
<Callout type="warning">
176176
When a suspended workflow reawakens, it will reset the credit counter.

docs-v2/pages/workflows/building-workflows/sharing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Sharing workflows via link is available on all plans, including the Free tier pl
131131

132132
To copy a workflow, a subscription is not required. However, the copied workflow is subject to the current workspace's plan limits.
133133

134-
For example, if a workflow requires more connected accounts than what's available on the [Free tier](/pricing/#free-tier), then users of your workflow will require a plan to run the workflow properly.
134+
For example, if a workflow requires more connected accounts than what's available on the [Free tier](/pricing/#free-plan), then users of your workflow will require a plan to run the workflow properly.
135135

136136
### Will copies of my workflow use my credits?
137137

0 commit comments

Comments
 (0)