Skip to content

Instantly share code, notes, and snippets.

@rt2zz
Created October 30, 2015 18:50
Show Gist options
  • Save rt2zz/237f395d42187b56c3d1 to your computer and use it in GitHub Desktop.
Save rt2zz/237f395d42187b56c3d1 to your computer and use it in GitHub Desktop.
POST v1/jobs
{
position,
venueId, // string or null
venue, // object or null -> if object create a new venue record and save the resultant venueId to the new job
// ... other job data
}
OR
POST v1/jobs
{
data: {
position,
// ... other job data
},
venue: {...}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment