(adjustments)
- list - List adjustments associated with a Moov account.
To access this endpoint using an access token
you'll need to specify the /accounts/{accountID}/wallets.read
scope.
- get - Retrieve a specific adjustment associated with a Moov account.
To access this endpoint using an access token
you'll need to specify the /accounts/{accountID}/wallets.read
scope.
List adjustments associated with a Moov account.
To access this endpoint using an access token
you'll need to specify the /accounts/{accountID}/wallets.read
scope.
from moovio_sdk import Moov
from moovio_sdk.models import components
with Moov(
security=components.Security(
username="",
password="",
),
) as moov:
res = moov.adjustments.list(account_id="27396e19-5d2d-4fba-876d-423579b4f37e")
# Handle response
print(res)
Parameter | Type | Required | Description |
---|---|---|---|
account_id |
str | ✔️ | N/A |
wallet_id |
Optional[str] | ➖ | A wallet ID to filter adjustments by. |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
operations.ListAdjustmentsResponse
Error Type | Status Code | Content Type |
---|---|---|
errors.APIError | 4XX, 5XX | */* |
Retrieve a specific adjustment associated with a Moov account.
To access this endpoint using an access token
you'll need to specify the /accounts/{accountID}/wallets.read
scope.
from moovio_sdk import Moov
from moovio_sdk.models import components
with Moov(
security=components.Security(
username="",
password="",
),
) as moov:
res = moov.adjustments.get(account_id="7c43cb4c-5944-40f9-9bef-7925774b06b4", adjustment_id="244e9b18-1d97-4344-8a69-abf3c48078bc")
# Handle response
print(res)
Parameter | Type | Required | Description |
---|---|---|---|
account_id |
str | ✔️ | N/A |
adjustment_id |
str | ✔️ | N/A |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
operations.GetAdjustmentResponse
Error Type | Status Code | Content Type |
---|---|---|
errors.APIError | 4XX, 5XX | */* |