Skip to content

Files

Latest commit

 

History

History
116 lines (79 loc) · 4.37 KB

ObjectEzsigntemplateglobalAPI.md

File metadata and controls

116 lines (79 loc) · 4.37 KB

ObjectEzsigntemplateglobalAPI

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

Method HTTP request Description
ezsigntemplateglobalGetAutocompleteV2 GET /2/object/ezsigntemplateglobal/getAutocomplete/{sSelector} Retrieve Ezsigntemplateglobals and IDs
ezsigntemplateglobalGetObjectV2 GET /2/object/ezsigntemplateglobal/{pkiEzsigntemplateglobalID} Retrieve an existing Ezsigntemplateglobal

ezsigntemplateglobalGetAutocompleteV2

    open class func ezsigntemplateglobalGetAutocompleteV2(sSelector: SSelector_ezsigntemplateglobalGetAutocompleteV2, eFilterActive: EFilterActive_ezsigntemplateglobalGetAutocompleteV2? = nil, sQuery: String? = nil, acceptLanguage: HeaderAcceptLanguage? = nil, completion: @escaping (_ data: EzsigntemplateglobalGetAutocompleteV2Response?, _ error: Error?) -> Void)

Retrieve Ezsigntemplateglobals and IDs

Get the list of Ezsigntemplateglobal to be used in a dropdown or autocomplete control.

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 sSelector = "sSelector_example" // String | The type of Ezsigntemplateglobals to return
let eFilterActive = "eFilterActive_example" // String | Specify which results we want to display. (optional) (default to .active)
let sQuery = "sQuery_example" // String | Allow to filter the returned results (optional)
let acceptLanguage = Header-Accept-Language() // HeaderAcceptLanguage |  (optional)

// Retrieve Ezsigntemplateglobals and IDs
ObjectEzsigntemplateglobalAPI.ezsigntemplateglobalGetAutocompleteV2(sSelector: sSelector, eFilterActive: eFilterActive, sQuery: sQuery, acceptLanguage: acceptLanguage) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
sSelector String The type of Ezsigntemplateglobals to return
eFilterActive String Specify which results we want to display. [optional] [default to .active]
sQuery String Allow to filter the returned results [optional]
acceptLanguage HeaderAcceptLanguage [optional]

Return type

EzsigntemplateglobalGetAutocompleteV2Response

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]

ezsigntemplateglobalGetObjectV2

    open class func ezsigntemplateglobalGetObjectV2(pkiEzsigntemplateglobalID: Int, completion: @escaping (_ data: EzsigntemplateglobalGetObjectV2Response?, _ error: Error?) -> Void)

Retrieve an existing Ezsigntemplateglobal

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 pkiEzsigntemplateglobalID = 987 // Int | 

// Retrieve an existing Ezsigntemplateglobal
ObjectEzsigntemplateglobalAPI.ezsigntemplateglobalGetObjectV2(pkiEzsigntemplateglobalID: pkiEzsigntemplateglobalID) { (response, error) in
    guard error == nil else {
        print(error)
        return
    }

    if (response) {
        dump(response)
    }
}

Parameters

Name Type Description Notes
pkiEzsigntemplateglobalID Int

Return type

EzsigntemplateglobalGetObjectV2Response

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]