Skip to content

Latest commit

 

History

History
142 lines (93 loc) · 9.64 KB

README.md

File metadata and controls

142 lines (93 loc) · 9.64 KB

PanoraAttachments

(accounting.attachments)

Available Operations

list

List Attachments

Example Usage

from panora_sdk import Panora

s = Panora(
    api_key="<YOUR_API_KEY_HERE>",
)


res = s.accounting.attachments.list(x_connection_token="<value>", remote_data=True, limit=10, cursor="1b8b05bb-5273-4012-b520-8657b0b90874")

if res is not None:
    while True:
        # handle items

        res = res.Next()
        if res is None:
            break

Parameters

Parameter Type Required Description Example
x_connection_token str ✔️ The connection token
remote_data Optional[bool] Set to true to include data from the original software. true
limit Optional[float] Set to get the number of records. 10
cursor Optional[str] Set to get the number of records after this cursor. 1b8b05bb-5273-4012-b520-8657b0b90874
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

models.ListAccountingAttachmentsResponse

Errors

Error Object Status Code Content Type
models.SDKError 4xx-5xx /

create

Create attachments in any supported Accounting software

Example Usage

from panora_sdk import Panora

s = Panora(
    api_key="<YOUR_API_KEY_HERE>",
)


res = s.accounting.attachments.create(x_connection_token="<value>", unified_accounting_attachment_input={
    "file_name": "invoice.pdf",
    "file_url": "https://example.com/files/invoice.pdf",
    "account_id": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
    "field_mappings": {},
}, remote_data=False)

if res is not None:
    # handle response
    pass

Parameters

Parameter Type Required Description Example
x_connection_token str ✔️ The connection token
unified_accounting_attachment_input models.UnifiedAccountingAttachmentInput ✔️ N/A
remote_data Optional[bool] Set to true to include data from the original Accounting software. false
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

models.UnifiedAccountingAttachmentOutput

Errors

Error Object Status Code Content Type
models.SDKError 4xx-5xx /

retrieve

Retrieve attachments from any connected Accounting software

Example Usage

from panora_sdk import Panora

s = Panora(
    api_key="<YOUR_API_KEY_HERE>",
)


res = s.accounting.attachments.retrieve(x_connection_token="<value>", id="801f9ede-c698-4e66-a7fc-48d19eebaa4f", remote_data=False)

if res is not None:
    # handle response
    pass

Parameters

Parameter Type Required Description Example
x_connection_token str ✔️ The connection token
id str ✔️ id of the attachment you want to retrieve. 801f9ede-c698-4e66-a7fc-48d19eebaa4f
remote_data Optional[bool] Set to true to include data from the original Accounting software. false
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

models.UnifiedAccountingAttachmentOutput

Errors

Error Object Status Code Content Type
models.SDKError 4xx-5xx /