Skip to main content
The Rust client is parable-web-api-sdk. It covers every endpoint in the API Reference. Calls are async.
Your Parable representative will confirm crate access if the package is not public yet.

Install

Import and authenticate

Create a client with your workspace API token. See Authentication if you do not have one.
The client sends Authorization: Bearer ... on every call.

Read

Who you are, then the connectors configured in your workspace:

Update

Enable a tap. Replace the id with one from your workspace.
Omitted fields (None) are left unchanged. To disable the tap, pass enabled: Some(false).
This SDK maps directly to API names. Groups in the API Reference are namespaces (sdk.users, sdk.vendors); operation names are snake_case methods (me, tenant_connector_instances). If an endpoint is in that spec, it is on this client.