SurveyWhere is API Development going?

Next generation backend experience for developers

January is the comprehensive platform for backend API development that lets you build, integrate, test, and deploy all in one place.

Try in playgroundTry in playground

Talk with us to discuss your thoughts, feedback, comments, or any other topics.

workflow('CreateUserWorkflow', {
tag: 'users',
trigger: trigger.http({
method: 'post',
path: '/',
}),
actions: {
createUser: trigger =>
action.database.insert({
table: useTable('Users'),
columns: [
useField('name', trigger.body.name),
useField('email', trigger.body.email),
],
}),
},
});