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
- OAuth PKCE: store code_verifier in sessionStorage (browser only) so token exchange works after redirect in React and other SPAs; verifier is restored on callback, cleared after successful exchange or on error; 10-minute expiry; Node remains memory-only
Copy file name to clipboardExpand all lines: lib/stack/bulkOperation/index.js
+43Lines changed: 43 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -126,6 +126,49 @@ export function BulkOperation (http, data = {}) {
126
126
}
127
127
}
128
128
129
+
/**
130
+
* The getJobItems request allows you to get the items of a bulk job.
131
+
* Response structure varies based on query params: items (always), skip/limit/total_count (when include_count=true), and other fields per params.
132
+
* @memberof BulkOperation
133
+
* @func getJobItems
134
+
* @returns {Promise<Object>} Response Object. Structure varies with params - always includes items array; may include skip, limit, total_count when include_count=true.
135
+
* @param {String} job_id - The ID of the job.
136
+
* @param {Object} [params={}] - Query parameters. Supports: include_count, skip, limit, include_reference, status, type, ct (content type UID or array), api_version, and any other dynamic query params.
0 commit comments