You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
When initiating the bulk issuance process using the Start bulk-issuance API, providing a space before the requestId parameter results in an incorrect error response
Input: Provide space before requestId in requestId param
[ requestId : 21d12b17-46c6-411a-b6cb-e8a015da38ce ]
Steps to Reproduce
Execute the bulk-issuance API.
Add a space before the requestIdIncorrect response when space is included before requestId in the requestId parameter
Observe the response.
Current behavior
{
"statusCode": 400,
"message": "Timeout for reviewing data, re-upload your file and generate new request",
"error": "Bad Request"
}
Expected behavior
Trim space and return successful response
{
"statusCode": 201,
"message": "Issuance process started. It will take some time",
"data": "Process initiated for bulk issuance"
}