|
| 1 | +# CyberSource.InterchangeClearingLevelDetailsApi |
| 2 | + |
| 3 | +All URIs are relative to *https://apitest.cybersource.com* |
| 4 | + |
| 5 | +Method | HTTP request | Description |
| 6 | +------------- | ------------- | ------------- |
| 7 | +[**getInterchangeClearingLevelDetails**](InterchangeClearingLevelDetailsApi.md#getInterchangeClearingLevelDetails) | **GET** /reporting/v3/interchange-clearing-level-details | Interchange Clearing Level data for an account or a merchant |
| 8 | + |
| 9 | + |
| 10 | +<a name="getInterchangeClearingLevelDetails"></a> |
| 11 | +# **getInterchangeClearingLevelDetails** |
| 12 | +> ReportingV3InterchangeClearingLevelDetailsGet200Response getInterchangeClearingLevelDetails(startTime, endTime, opts) |
| 13 | +
|
| 14 | +Interchange Clearing Level data for an account or a merchant |
| 15 | + |
| 16 | +Interchange Clearing Level data for an account or a merchant |
| 17 | + |
| 18 | +### Example |
| 19 | +```javascript |
| 20 | +var CyberSource = require('CyberSource'); |
| 21 | + |
| 22 | +var apiInstance = new CyberSource.InterchangeClearingLevelDetailsApi(); |
| 23 | + |
| 24 | +var startTime = new Date("2013-10-20T19:20:30+01:00"); // Date | Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) |
| 25 | + |
| 26 | +var endTime = new Date("2013-10-20T19:20:30+01:00"); // Date | Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) |
| 27 | + |
| 28 | +var opts = { |
| 29 | + 'organizationId': "organizationId_example" // String | Valid Organization Id |
| 30 | +}; |
| 31 | + |
| 32 | +var callback = function(error, data, response) { |
| 33 | + if (error) { |
| 34 | + console.error(error); |
| 35 | + } else { |
| 36 | + console.log('API called successfully. Returned data: ' + data); |
| 37 | + } |
| 38 | +}; |
| 39 | +apiInstance.getInterchangeClearingLevelDetails(startTime, endTime, opts, callback); |
| 40 | +``` |
| 41 | + |
| 42 | +### Parameters |
| 43 | + |
| 44 | +Name | Type | Description | Notes |
| 45 | +------------- | ------------- | ------------- | ------------- |
| 46 | + **startTime** | **Date**| Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) | |
| 47 | + **endTime** | **Date**| Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) | |
| 48 | + **organizationId** | **String**| Valid Organization Id | [optional] |
| 49 | + |
| 50 | +### Return type |
| 51 | + |
| 52 | +[**ReportingV3InterchangeClearingLevelDetailsGet200Response**](ReportingV3InterchangeClearingLevelDetailsGet200Response.md) |
| 53 | + |
| 54 | +### Authorization |
| 55 | + |
| 56 | +No authorization required |
| 57 | + |
| 58 | +### HTTP request headers |
| 59 | + |
| 60 | + - **Content-Type**: application/json;charset=utf-8 |
| 61 | + - **Accept**: application/hal+json, application/xml |
| 62 | + |
0 commit comments