Hi @Enrique Ramirez ,
Yes, you are correct when saying the entityId is the id for what you have described in assignmentType, so if you have selected JOB (as in your case), the entityId 3637249 must represent the Job's id.
There is a Suggestion https://jira.atlassian.com/browse/BAM-19659 - REST APIs for Jobs should show the Job id filed waiting to be implemented. If possible, I would encourage you to comment on the link mentioned, as well as voting and becoming a watcher so you can keep up to date with changed to it.
In the meantime, you could get the Job id by running SQL statement against Bamboo's database:
# build_type, can be either CHAIN, CHAIN_BRANCH or JOB where:
# CHAIN relates to a plan
# CHAIN_BRANCH relates to a branch
# JOB relates to a job
select build_id
, build_type
, full_key
from build
where full_key like 'PROJ-PLAN%';
Kind regards,
Rafael
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.