stageAssets
Creates test assets for sandbox integration testing. Mock asset data is automatically removed 14 days after staging.
Arguments
input AtsSyncCandidateSyncStageAssetsInput! Required
assets [AtsSyncCandidateSyncStageableAssetInput!]! Required
Assets to stage for testing.
smartSourcingContact AtsSyncCandidateSyncInterestedCandidateAssetInput
Smart Sourcing contact asset input.
Response
Returns StageAssetsAtsSyncCandidateSyncPayload .ids [ID]! Non-Null
Tracking key IDs for staged assets.
Example
Query
mutation StageAssets($input: AtsSyncCandidateSyncStageAssetsInput!) { atsSyncCandidateSync { stageAssets(input: $input) { ids } }}Variables
{"input": AtsSyncCandidateSyncStageAssetsInput}Response
{ "data": { "atsSyncCandidateSync": { "stageAssets": {"ids": ["opaqueId"]} } }}