Address Verification (On-Premises)
- Address Verification (On-Premises) 6.5.0
- All Products
IDVE_EXPORTCALL1 IDVE_StatusCode IDVE_EXPORTCALL2IDVE_GetArraySize( const char* const kpksCustomerID, const char* const kpksURI, IDVE_U64* const kpu64NumItems, IDVE_Bool* const kpbIsValuePresent, char* const kpsExtStatusMsg );
Parameter
| Operation
| Comment
|
---|---|---|
const char* const kpksCustomerID
| [in]
| Pointer to the zero-terminated 7-bit ASCII-encoded customer ID. The value might not be NULL.
|
const char* const kpksURI
| [in]
| Pointer to the zero-terminated 7-bit ASCII URI, for example " AV/v1/Jobs/###/IO/Outputs/0/Results ". The value might not be NULL.
|
IDVE_U64* const kpu64NumItems
| [out]
| Pointer to an unsigned 64-bit integer value that receives the value of the output. The value might not be NULL.
|
IDVE_Bool* const kpbIsValuePresent
| [out]
| If you provide a valid pointer for kpbIsValuePresent, the function will indicate if the value at the given URI is present by setting kpbIsValuePresent to true or false.
If you provide NULL for kpbIsValuePresent and the array size that you want to retrieve does not exist, the function call will report an error. If you provide NULL for kpbIsValuePresent and the array size exists, it is retrieved normally.
|
char* const kpsExtStatusMsg
| [out]
| Pointer to a buffer of size IDVE_EXT_STATUS_MSG_BUFFER_SIZE for an optional extended status message. The value can be NULL.
|