Closed lhammond closed 7 years ago
I can't figure out how to do this.
I've got an array of idnumbers and I'd like to retrieve an array back.
I've tried
criteria = [{ key:"idnumber", value:["123","456"] }]
should I be using a different API function?
thanks in advance!!
I was able to do this with
`
var ids = ['123','456']; var args = { field:"idnumber", values:ids, }; let response = await this.sendRequest('POST', 'core_user_get_users_by_field', args);
I can't figure out how to do this.
I've got an array of idnumbers and I'd like to retrieve an array back.
I've tried
criteria = [{ key:"idnumber", value:["123","456"] }]
should I be using a different API function?
thanks in advance!!