~~NOTOC~~
[[server_api]] > [[BS2_VerifyUserEx]]
----
===== BS2_VerifyUserEx =====
Transfers user information mapped to the card or user ID authentication results to the device.
\\
==== Declaration ====
#include "BS_API.h"
int BS2_VerifyUserEx(void* context, uint32_t deviceId, uint16_t seq, int handleResult, BS2UserBlobEx* userBlob);
[[user management api#BS2UserBlobEx|See BS2UserBlobEx Structure]]
==== Parameter ====
* [In] ''//context//'' : Context
* [In] ''//deviceId//'' : Device ID
* [In] ''//seq//'' : Packet sequence number
* [In] ''//handleResult//'' : Value of matching result(BS_SDK_SUCCESS or BS_SDK_ERROR_XXX)
* [In] ''//userBlob//'' : Matched user information
**NOTE**\\
Packet sequence number must be equivalent to the value sent from the OnVerifyUser. \\
If the handleResult is BS_SDK_SUCCESS, the userBlob should not be null.
==== Return Value ====
If successfully done, ''BS_SDK_SUCCESS'' will be returned. \\
If there is an error, the corresponding error code will be returned.
==== See Also ====
[[BS2_SetServerMatchingHandler]]