Hi there, I’m trying to add a record on Users Table via API.
In Postman I have this
Type: POST URL: The EndPoint (The API Documentation option in Users Table) Body:
Raw
JSON
{
“User”: “Test”,
“Username”: “Test”,
“Full Name”: “Prueba Test”
}
Authorization: Bearer token
Error message: Request failed with status code 500
Hi @theadaloguy - I am trying to use Postman to create multiple users by populating the Users table in a Supabase project. I can get it working when doing one user at a time using the following raw json:
I’m not familiar with Supabase and how it accepts api calls. I assume you could just loop through the users you want to add. I don’t think that can be done on postman though.