You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default the jobs listing is paginated with 50 jobs per page and sorted by ID in descending order. You can pass two parameters to control the paging: `page` and `per_page`.
53
53
@@ -56,78 +56,78 @@ client.job.list(per_page=10)
56
56
client.job.list(per_page=10, page=2)
57
57
```
58
58
59
-
Get [details](https://app.zencoder.com/docs/api/jobs/show) about a job.
59
+
Get [details](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Jobs-Get_Job_Details) about a job.
60
60
61
61
The number passed to `details` is the ID of a Zencoder job.
62
62
63
63
```python
64
64
client.job.details(1)
65
65
```
66
66
67
-
Get [progress](https://app.zencoder.com/docs/api/jobs/progress) on a job.
67
+
Get [progress](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Jobs-Job_Progress) on a job.
68
68
69
69
The number passed to `progress` is the ID of a Zencoder job.
70
70
71
71
```python
72
72
client.job.progress(1)
73
73
```
74
74
75
-
[Resubmit](https://app.zencoder.com/docs/api/jobs/resubmit) a job
75
+
[Resubmit](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Jobs-Resubmit_a_Job) a job
76
76
77
77
The number passed to `resubmit` is the ID of a Zencoder job.
78
78
79
79
```python
80
80
client.job.resubmit(1)
81
81
```
82
82
83
-
[Cancel](https://app.zencoder.com/docs/api/jobs/cancel) a job
83
+
[Cancel](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Jobs-Cancel_a_Job) a job
84
84
85
85
The number passed to `cancel` is the ID of a Zencoder job.
Get [details](https://app.zencoder.com/docs/api/inputs/show) about an input.
93
+
Get [details](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Inputs-Get_Input_Details) about an input.
94
94
95
95
The number passed to `details` is the ID of a Zencoder input.
96
96
97
97
```python
98
98
client.input.details(1)
99
99
```
100
100
101
-
Get [progress](https://app.zencoder.com/docs/api/inputs/progress) for an input.
101
+
Get [progress](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Inputs-Update_Input_Progress) for an input.
102
102
103
103
The number passed to `progress` is the ID of a Zencoder input.
Get [details](https://app.zencoder.com/docs/api/outputs/show) about an output.
110
+
Get [details](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Outputs-Get_Output_Details) about an output.
111
111
112
112
The number passed to `details` is the ID of a Zencoder output.
113
113
114
114
```python
115
115
client.output.details(1)
116
116
```
117
117
118
-
Get [progress](https://app.zencoder.com/docs/api/outputs/progress) for an output.
118
+
Get [progress](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Outputs-Update_Output_Progress) for an output.
119
119
120
120
The number passed to `progress` is the ID of a Zencoder output.
Reports are great for getting usage data for your account. All default to 30 days from yesterday with no [grouping](https://app.zencoder.com/docs/api/encoding/job/grouping), but this can be altered. These will return `422 Unprocessable Entity` if the date format is incorrect or the range is greater than 2 months.
128
+
Reports are great for getting usage data for your account. All default to 30 days from yesterday with no [grouping](https://support.brightcove.com/zencoder-encoding-settings-job#grouping), but this can be altered. These will return `422 Unprocessable Entity` if the date format is incorrect or the range is greater than 2 months.
129
129
130
-
Get [all usage](https://app.zencoder.com/docs/api/reports/all) (Live + VOD).
130
+
Get [all usage](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Reports-Get_Usage_for_VOD___Live) (Live + VOD).
Create a [new account](https://app.zencoder.com/docs/api/accounts/create). A unique email address and terms of service are required, but you can also specify a password (and confirmation) along with whether or not you want to subscribe to the Zencoder newsletter. New accounts will be created under the Test (Free) plan.
171
+
Create a [new account](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Accounts-Create_an_Account). A unique email address and terms of service are required, but you can also specify a password (and confirmation) along with whether or not you want to subscribe to the Zencoder newsletter. New accounts will be created under the Test (Free) plan.
Get [details](https://app.zencoder.com/docs/api/accounts/show) about the current account.
183
+
Get [details](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Accounts-Get_Account_Details) about the current account.
184
184
185
185
```python
186
186
client.account.details()
187
187
```
188
188
189
-
Turn [integration mode](https://app.zencoder.com/docs/api/accounts/integration) on (all jobs are test jobs).
189
+
Turn [integration mode](https://brightcovelearning.github.io/Brightcove-API-References/zencoder-api/v2/doc/index.html#api-Accounts-Turn_On_Integration_Mode) on (all jobs are test jobs).
0 commit comments