All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
buyercontractGetCommunicationCountV1 | GET /1/object/buyercontract/{pkiBuyercontractID}/getCommunicationCount | Retrieve Communication count |
buyercontractGetCommunicationListV1 | GET /1/object/buyercontract/{pkiBuyercontractID}/getCommunicationList | Retrieve Communication list |
buyercontractGetCommunicationrecipientsV1 | GET /1/object/buyercontract/{pkiBuyercontractID}/getCommunicationrecipients | Retrieve Buyercontract's Communicationrecipient |
buyercontractGetCommunicationsendersV1 | GET /1/object/buyercontract/{pkiBuyercontractID}/getCommunicationsenders | Retrieve Buyercontract's Communicationsender |
open class func buyercontractGetCommunicationCountV1(pkiBuyercontractID: Int, completion: @escaping (_ data: BuyercontractGetCommunicationCountV1Response?, _ error: Error?) -> Void)
Retrieve Communication count
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let pkiBuyercontractID = 987 // Int |
// Retrieve Communication count
ObjectBuyercontractAPI.buyercontractGetCommunicationCountV1(pkiBuyercontractID: pkiBuyercontractID) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
pkiBuyercontractID | Int |
BuyercontractGetCommunicationCountV1Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
open class func buyercontractGetCommunicationListV1(pkiBuyercontractID: Int, completion: @escaping (_ data: BuyercontractGetCommunicationListV1Response?, _ error: Error?) -> Void)
Retrieve Communication list
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let pkiBuyercontractID = 987 // Int |
// Retrieve Communication list
ObjectBuyercontractAPI.buyercontractGetCommunicationListV1(pkiBuyercontractID: pkiBuyercontractID) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
pkiBuyercontractID | Int |
BuyercontractGetCommunicationListV1Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
open class func buyercontractGetCommunicationrecipientsV1(pkiBuyercontractID: Int, completion: @escaping (_ data: BuyercontractGetCommunicationrecipientsV1Response?, _ error: Error?) -> Void)
Retrieve Buyercontract's Communicationrecipient
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let pkiBuyercontractID = 987 // Int |
// Retrieve Buyercontract's Communicationrecipient
ObjectBuyercontractAPI.buyercontractGetCommunicationrecipientsV1(pkiBuyercontractID: pkiBuyercontractID) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
pkiBuyercontractID | Int |
BuyercontractGetCommunicationrecipientsV1Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
open class func buyercontractGetCommunicationsendersV1(pkiBuyercontractID: Int, completion: @escaping (_ data: BuyercontractGetCommunicationsendersV1Response?, _ error: Error?) -> Void)
Retrieve Buyercontract's Communicationsender
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let pkiBuyercontractID = 987 // Int |
// Retrieve Buyercontract's Communicationsender
ObjectBuyercontractAPI.buyercontractGetCommunicationsendersV1(pkiBuyercontractID: pkiBuyercontractID) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
pkiBuyercontractID | Int |
BuyercontractGetCommunicationsendersV1Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]