POST
The POST method on the root of the domain will fetch record(s).
POST
https://api.traverzer.tech/
Headers
Name
Value
Content-Type
application/json
Authorization
<token>
Body
Name
Type
Description
[Table Name]
string
Name of the table
[Table Name].[Field Name]
string
Value of the field
Request
fetch('https://api.traverzer.tech/', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': <token>
},
body: JSON.stringify({
user: {
username: "johndoe",
email: "",
profile: {
name: "",
address: {
state: ""
},
}
}
})
});
Response
{
"user": {
"username": "johndoe",
"email": "[email protected]",
"profile": {
"name": "John Doe",
"address": {
"state": "CA",
},
}
}
}
Last updated