Created
October 30, 2015 18:50
-
-
Save rt2zz/237f395d42187b56c3d1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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