<@!457661396717666304> , so for emailpassword API,...
# support-questions
r
@User , so for emailpassword API, I will show you how to call the signin API in your node process. I will assume the following: - You have integrated our SDK into your node process. - Your node process is running on
http://localhost:8080
(can use anything, but for this example, I will be using that). - Your
apiBasePath
is the default one (
/auth
) In Postman, do the following: - Put
http://localhost:8080/auth/signin
in the URL - Change method to
POST
- Click on Body > raw option - Choose JSON in the drop down that shows up next to the options - Paste the following in the body and click send:
Copy code
{
  "formFields": [
    {
      "id": "email",
      "value": "test@example.com"
    },
    {
      "id": "password",
      "value": "testPassword"
    }
  ]
}
2 Views