Skip to content

Latest commit

 

History

History
212 lines (140 loc) · 6.63 KB

ObjectBuyercontractAPI.md

File metadata and controls

212 lines (140 loc) · 6.63 KB

ObjectBuyercontractAPI

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

buyercontractGetCommunicationCountV1

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

// Retrieve Communication count
ObjectBuyercontractAPI.buyercontractGetCommunicationCountV1(pkiBuyercontractID: pkiBuyercontractID) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiBuyercontractID Int

Return type

BuyercontractGetCommunicationCountV1Response

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]

buyercontractGetCommunicationListV1

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

// Retrieve Communication list
ObjectBuyercontractAPI.buyercontractGetCommunicationListV1(pkiBuyercontractID: pkiBuyercontractID) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiBuyercontractID Int

Return type

BuyercontractGetCommunicationListV1Response

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]

buyercontractGetCommunicationrecipientsV1

    open class func buyercontractGetCommunicationrecipientsV1(pkiBuyercontractID: Int, completion: @escaping (_ data: BuyercontractGetCommunicationrecipientsV1Response?, _ error: Error?) -> Void)

Retrieve Buyercontract'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 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)
    }
}

Parameters

Name Type Description Notes
pkiBuyercontractID Int

Return type

BuyercontractGetCommunicationrecipientsV1Response

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]

buyercontractGetCommunicationsendersV1

    open class func buyercontractGetCommunicationsendersV1(pkiBuyercontractID: Int, completion: @escaping (_ data: BuyercontractGetCommunicationsendersV1Response?, _ error: Error?) -> Void)

Retrieve Buyercontract'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 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)
    }
}

Parameters

Name Type Description Notes
pkiBuyercontractID Int

Return type

BuyercontractGetCommunicationsendersV1Response

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]