All URIs are relative to https://secure.ultracart.com/rest/v2.
| Method | HTTP request | Description |
|---|---|---|
| getIntegrationLog() | GET /integration_log/query/{pk}/{sk} | Retrieve an integration log |
| getIntegrationLogFile() | GET /integration_log/query/{pk}/{sk}/{uuid} | Retrieve an integration log file |
| getIntegrationLogFilePdf() | GET /integration_log/query/{pk}/{sk}/{uuid}/pdf | Retrieve an integration log file converted to PDF |
| getIntegrationLogSummariesQuery() | POST /integration_log/summary/query | Retrieve integration log summaries |
| getIntegrationLogsQuery() | POST /integration_log/query | Retrieve integration logs |
getIntegrationLog($pk, $sk): \ultracart\v2\models\IntegrationLogResponseRetrieve an integration log
Retrieve an integration logs from the account based identifiers
<?php // Please see the README.md in this directory for an explanation on why there are no samples here.| Name | Type | Description | Notes |
|---|---|---|---|
| pk | string | ||
| sk | string |
\ultracart\v2\models\IntegrationLogResponse
ultraCartOauth, ultraCartSimpleApiKey
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getIntegrationLogFile($pk, $sk, $uuid): \SplFileObjectRetrieve an integration log file
Retrieve an integration log file from the account based identifiers
<?php // Please see the README.md in this directory for an explanation on why there are no samples here.| Name | Type | Description | Notes |
|---|---|---|---|
| pk | string | ||
| sk | string | ||
| uuid | string |
\SplFileObject
ultraCartOauth, ultraCartSimpleApiKey
- Content-Type: Not defined
- Accept:
application/octet-stream
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getIntegrationLogFilePdf($pk, $sk, $uuid): \SplFileObjectRetrieve an integration log file converted to PDF
Retrieve an integration log file from the account based identifiers
<?php // Please see the README.md in this directory for an explanation on why there are no samples here.| Name | Type | Description | Notes |
|---|---|---|---|
| pk | string | ||
| sk | string | ||
| uuid | string |
\SplFileObject
ultraCartOauth, ultraCartSimpleApiKey
- Content-Type: Not defined
- Accept:
application/octet-stream
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getIntegrationLogSummariesQuery($integration_log_summaries_query): \ultracart\v2\models\IntegrationLogSummaryQueryResponseRetrieve integration log summaries
Retrieves a set of integration log summaries from the account based on a query object.
<?php // Please see the README.md in this directory for an explanation on why there are no samples here.| Name | Type | Description | Notes |
|---|---|---|---|
| integration_log_summaries_query | \ultracart\v2\models\IntegrationLogSummaryQueryRequest | Integration log summaries query |
\ultracart\v2\models\IntegrationLogSummaryQueryResponse
ultraCartOauth, ultraCartSimpleApiKey
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getIntegrationLogsQuery($integration_log_query, $_limit, $_offset, $_sort): \ultracart\v2\models\IntegrationLogQueryResponseRetrieve integration logs
Retrieves a set of integration logs from the account based on a query object.
<?php // Please see the README.md in this directory for an explanation on why there are no samples here.| Name | Type | Description | Notes |
|---|---|---|---|
| integration_log_query | \ultracart\v2\models\IntegrationLogQueryRequest | Integration log query | |
| _limit | int | The maximum number of records to return on this one API call. (Default 100, Max 500) | [optional] [default to 100] |
| _offset | int | Pagination of the record set. Offset is a zero based index. | [optional] [default to 0] |
| _sort | string | The sort order of the items. See Sorting documentation for examples of using multiple values and sorting by ascending and descending. | [optional] |
\ultracart\v2\models\IntegrationLogQueryResponse
ultraCartOauth, ultraCartSimpleApiKey
- Content-Type:
application/json - Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]