Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
creds = await client.get_credentials() for c in creds: print(f"{c.name} ({c.credential_id})")
const creds = await skyvern.getCredentials({}); for (const c of creds) { console.log(`${c.name} (${c.credential_id})`); }
page
int
None
page_size
vault_type
CredentialVaultType
"skyvern"
"custom"
"bitwarden"
"azure_vault"
request_options
RequestOptions
list[CredentialResponse]
from skyvern.client.core import RequestOptions request_options=RequestOptions( timeout_in_seconds=120, max_retries=3, additional_headers={"x-custom-header": "value"}, )
// Pass as second argument to any method { timeoutInSeconds: 120, maxRetries: 3, headers: { "x-custom-header": "value" }, }
timeout_in_seconds
timeoutInSeconds
number
max_retries
maxRetries
additional_headers
headers
dict
Record<string, string>
additional_query_parameters
additional_body_parameters
abortSignal
AbortSignal
apiKey
string
Was this page helpful?