Removing One-To-Many Values from Entity
Moderators: StaffingSupport, s.emmons, BullhornSupport
Removing One-To-Many Values from Entity
What is the method for removing one-to-many values from an entity? For example, how would I remove all skills from a JobOrder, or even all categories from a JobOrder? Thanks in advance for the help!
Re: Removing One-To-Many Values from Entity
Please see http://bullhorn.github.io/rest-api-docs ... sociations
You would want to use this format:
(where 1,2,3 are separate skill ID's)
You would want to use this format:
Code: Select all
https://restXX.bullhornstaffing.com/rest-services/{CorpToken}/entity/JobOrder/12345 (Where 12345 is the job)
{
"skills": {"remove": [1,2,3]}
}
Re: Removing One-To-Many Values from Entity
Thank you!!!