Skip to content

Latest commit

 

History

History
57 lines (39 loc) · 5.1 KB

README.md

File metadata and controls

57 lines (39 loc) · 5.1 KB

ConnectorResources

(connector.connector_resources)

Overview

Available Operations

  • get - Get Connector Resource

get

Get Connector Resource

Example Usage

import apideck_unify
from apideck_unify import Apideck
import os

with Apideck(
    api_key=os.getenv("APIDECK_API_KEY", ""),
    consumer_id="test-consumer",
    app_id="dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
) as apideck:

    res = apideck.connector.connector_resources.get(id="<id>", resource_id="<id>", app_id="dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX", unified_api=apideck_unify.UnifiedAPIID.CRM)

    assert res.get_connector_resource_response is not None

    # Handle response
    print(res.get_connector_resource_response)

Parameters

Parameter Type Required Description Example
id str ✔️ ID of the record you are acting upon.
resource_id str ✔️ ID of the resource you are acting upon.
app_id Optional[str] The ID of your Unify application dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX
unified_api Optional[models.UnifiedAPIID] Specify unified API for the connector resource. This is useful when a resource appears in multiple APIs crm
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

models.ConnectorConnectorResourcesOneResponse

Errors

Error Type Status Code Content Type
models.UnauthorizedResponse 401 application/json
models.PaymentRequiredResponse 402 application/json
models.NotFoundResponse 404 application/json
models.APIError 4XX, 5XX */*