curl --location --request POST '/api/auth/two-factor/verify-backup-code' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"code": "string",
"disableSession": "string",
"trustDevice": "string"
}'
{
"user": {
"id": "string",
"email": "user@example.com",
"emailVerified": true,
"name": "string",
"image": "http://example.com",
"twoFactorEnabled": true,
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z"
},
"session": {
"token": "string",
"userId": "string",
"createdAt": "2019-08-24T14:15:22Z",
"expiresAt": "2019-08-24T14:15:22Z"
}
}