Placement companies (Japan)
A placement company is a company that helps to find job candidates for employers. Its clients are the employers, and it works as an intermediary between the clients and the candidates.
These fields are required if you call the Indeed PLUS APIs and the employer is a placement company. If you don't send the required information, Indeed might reject your job posting.
patchEmployer
These fields are required in addition to the fields in Japan partner requirements for employers.
patchEmployerinputemployerName: The name of the placement company that posts this job.employerAttributes: Information about the placement company that posts this job.
createSourcedJobPostings
These fields are required in addition to the fields in Basic job posting.
- createSourcedJobPostings
- Use input > jobPostings > body > description to provide the client company information, the placement company information, and the fact that the placement company posted the job on behalf of the client company.
- Use input > jobPostings > metadata > jobSource > companyName to set the client company name.
- Use input > jobPostings > metadata > jobSource > sourceName to set the placement company
sourceName. Use asourceNamethat is different from the one used forsourceType: "Employer". - Use input > jobPostings > metadata > jobSource > sourceType to set
"Staffing Agency". - Use input > jobPostings > metadata > jobSource > isPlacement to set
TRUE.
Example job posting request
Create a job posting by a placement company:
mutation CreatePlacementCompanyJobPosting() { jobsIngest { createSourcedJobPostings( input: { jobPostings: [ { body: { title: "カスタマーサポート" description: "<h2 data-segment-type=\"header\" data-segment-label=\"JobDescription\">仕事内容</h2><div data-segment-type=\"content\" data-segment-label=\"JobDescription\">株式会社紹介先企業の店舗でのカスタマーサポートの仕事になります。<br/>分からないことがあれば店舗のスタッフに相談できる環境になっています。なお本求人は職業紹介事業者である株式会社紹介元企業による紹介案件です。</div>" descriptionFormatting: RICH_FORMATTING salary: { currency: "JPY" period: "MONTH" minimumMinor: 400000 } hasProbationaryPeriod: NO location: { country: "JP" streetAddress: "123-4567 北海道札幌市中央区 1-2-3" } benefits: [] } metadata: { jobSource: { companyName: "株式会社雇用先企業" sourceName: "株式会社紹介元企業" sourceType: "Staffing Agency" isPlacement: true employerIds: [ { type: "<YOUR_ATS_IDENTIFIER>" id: "<YOUR_ATS_EMPLOYER_ID>" } ] } jobPostingId: "<YOUR_ATS_JOB_POSTING_ID>" taxonomyClassification: { jobTypes: ["T65DZ"] occupations: ["C3XKZ"] } datePublished: "2023-09-20T09:00:00+09:00" url: "https://example.com/jobs/aaabbbccc" contacts: [ { contactType: "contact" contactInfo: { contactEmail: "contact@career.example.com" } } ] } applyMethod: { indeedApply: { postUrl: "https://example.com/applypost" apiToken: "<YOUR_INDEED_APPLY_API_TOKEN>" resumeFieldsRequired: [CERTIFICATIONS] resumeFieldsOptional: [EDUCATION] } } } ] } ) }}