Skip to content

Latest commit

 

History

History
59 lines (38 loc) · 1.78 KB

ObjectInscriptiontempAPI.md

File metadata and controls

59 lines (38 loc) · 1.78 KB

ObjectInscriptiontempAPI

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

Method HTTP request Description
inscriptiontempGetCommunicationListV1 GET /1/object/inscriptiontemp/{pkiInscriptiontempID}/getCommunicationList Retrieve Communication list

inscriptiontempGetCommunicationListV1

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

// Retrieve Communication list
ObjectInscriptiontempAPI.inscriptiontempGetCommunicationListV1(pkiInscriptiontempID: pkiInscriptiontempID) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiInscriptiontempID Int

Return type

InscriptiontempGetCommunicationListV1Response

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]