Skip to content

Latest commit

 

History

History
212 lines (140 loc) · 7.36 KB

ObjectElectronicfundstransferAPI.md

File metadata and controls

212 lines (140 loc) · 7.36 KB

ObjectElectronicfundstransferAPI

All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest

Method HTTP request Description
electronicfundstransferGetCommunicationCountV1 GET /1/object/electronicfundstransfer/{pkiElectronicfundstransferID}/getCommunicationCount Retrieve Communication count
electronicfundstransferGetCommunicationListV1 GET /1/object/electronicfundstransfer/{pkiElectronicfundstransferID}/getCommunicationList Retrieve Communication list
electronicfundstransferGetCommunicationrecipientsV1 GET /1/object/electronicfundstransfer/{pkiElectronicfundstransferID}/getCommunicationrecipients Retrieve Electronicfundstransfer's Communicationrecipient
electronicfundstransferGetCommunicationsendersV1 GET /1/object/electronicfundstransfer/{pkiElectronicfundstransferID}/getCommunicationsenders Retrieve Electronicfundstransfer's Communicationsender

electronicfundstransferGetCommunicationCountV1

    open class func electronicfundstransferGetCommunicationCountV1(pkiElectronicfundstransferID: Int, completion: @escaping (_ data: ElectronicfundstransferGetCommunicationCountV1Response?, _ error: Error?) -> Void)

Retrieve Communication count

Example

// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient

let pkiElectronicfundstransferID = 987 // Int | 

// Retrieve Communication count
ObjectElectronicfundstransferAPI.electronicfundstransferGetCommunicationCountV1(pkiElectronicfundstransferID: pkiElectronicfundstransferID) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiElectronicfundstransferID Int

Return type

ElectronicfundstransferGetCommunicationCountV1Response

Authorization

Authorization

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

electronicfundstransferGetCommunicationListV1

    open class func electronicfundstransferGetCommunicationListV1(pkiElectronicfundstransferID: Int, completion: @escaping (_ data: ElectronicfundstransferGetCommunicationListV1Response?, _ error: Error?) -> Void)

Retrieve Communication list

Example

// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient

let pkiElectronicfundstransferID = 987 // Int | 

// Retrieve Communication list
ObjectElectronicfundstransferAPI.electronicfundstransferGetCommunicationListV1(pkiElectronicfundstransferID: pkiElectronicfundstransferID) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiElectronicfundstransferID Int

Return type

ElectronicfundstransferGetCommunicationListV1Response

Authorization

Authorization

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

electronicfundstransferGetCommunicationrecipientsV1

    open class func electronicfundstransferGetCommunicationrecipientsV1(pkiElectronicfundstransferID: Int, completion: @escaping (_ data: ElectronicfundstransferGetCommunicationrecipientsV1Response?, _ error: Error?) -> Void)

Retrieve Electronicfundstransfer's Communicationrecipient

Example

// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient

let pkiElectronicfundstransferID = 987 // Int | 

// Retrieve Electronicfundstransfer's Communicationrecipient
ObjectElectronicfundstransferAPI.electronicfundstransferGetCommunicationrecipientsV1(pkiElectronicfundstransferID: pkiElectronicfundstransferID) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiElectronicfundstransferID Int

Return type

ElectronicfundstransferGetCommunicationrecipientsV1Response

Authorization

Authorization

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

electronicfundstransferGetCommunicationsendersV1

    open class func electronicfundstransferGetCommunicationsendersV1(pkiElectronicfundstransferID: Int, completion: @escaping (_ data: ElectronicfundstransferGetCommunicationsendersV1Response?, _ error: Error?) -> Void)

Retrieve Electronicfundstransfer's Communicationsender

Example

// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient

let pkiElectronicfundstransferID = 987 // Int | 

// Retrieve Electronicfundstransfer's Communicationsender
ObjectElectronicfundstransferAPI.electronicfundstransferGetCommunicationsendersV1(pkiElectronicfundstransferID: pkiElectronicfundstransferID) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiElectronicfundstransferID Int

Return type

ElectronicfundstransferGetCommunicationsendersV1Response

Authorization

Authorization

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]