Skip to content

Latest commit

 

History

History
212 lines (140 loc) · 6.48 KB

ObjectOtherincomeAPI.md

File metadata and controls

212 lines (140 loc) · 6.48 KB

ObjectOtherincomeAPI

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

Method HTTP request Description
otherincomeGetCommunicationCountV1 GET /1/object/otherincome/{pkiOtherincomeID}/getCommunicationCount Retrieve Communication count
otherincomeGetCommunicationListV1 GET /1/object/otherincome/{pkiOtherincomeID}/getCommunicationList Retrieve Communication list
otherincomeGetCommunicationrecipientsV1 GET /1/object/otherincome/{pkiOtherincomeID}/getCommunicationrecipients Retrieve Otherincome's Communicationrecipient
otherincomeGetCommunicationsendersV1 GET /1/object/otherincome/{pkiOtherincomeID}/getCommunicationsenders Retrieve Otherincome's Communicationsender

otherincomeGetCommunicationCountV1

    open class func otherincomeGetCommunicationCountV1(pkiOtherincomeID: Int, completion: @escaping (_ data: OtherincomeGetCommunicationCountV1Response?, _ 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 pkiOtherincomeID = 987 // Int | 

// Retrieve Communication count
ObjectOtherincomeAPI.otherincomeGetCommunicationCountV1(pkiOtherincomeID: pkiOtherincomeID) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiOtherincomeID Int

Return type

OtherincomeGetCommunicationCountV1Response

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]

otherincomeGetCommunicationListV1

    open class func otherincomeGetCommunicationListV1(pkiOtherincomeID: Int, completion: @escaping (_ data: OtherincomeGetCommunicationListV1Response?, _ 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 pkiOtherincomeID = 987 // Int | 

// Retrieve Communication list
ObjectOtherincomeAPI.otherincomeGetCommunicationListV1(pkiOtherincomeID: pkiOtherincomeID) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiOtherincomeID Int

Return type

OtherincomeGetCommunicationListV1Response

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]

otherincomeGetCommunicationrecipientsV1

    open class func otherincomeGetCommunicationrecipientsV1(pkiOtherincomeID: Int, completion: @escaping (_ data: OtherincomeGetCommunicationrecipientsV1Response?, _ error: Error?) -> Void)

Retrieve Otherincome'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 pkiOtherincomeID = 987 // Int | 

// Retrieve Otherincome's Communicationrecipient
ObjectOtherincomeAPI.otherincomeGetCommunicationrecipientsV1(pkiOtherincomeID: pkiOtherincomeID) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiOtherincomeID Int

Return type

OtherincomeGetCommunicationrecipientsV1Response

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]

otherincomeGetCommunicationsendersV1

    open class func otherincomeGetCommunicationsendersV1(pkiOtherincomeID: Int, completion: @escaping (_ data: OtherincomeGetCommunicationsendersV1Response?, _ error: Error?) -> Void)

Retrieve Otherincome'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 pkiOtherincomeID = 987 // Int | 

// Retrieve Otherincome's Communicationsender
ObjectOtherincomeAPI.otherincomeGetCommunicationsendersV1(pkiOtherincomeID: pkiOtherincomeID) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiOtherincomeID Int

Return type

OtherincomeGetCommunicationsendersV1Response

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]