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.
The following 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
The following fields are required in addition to the fields in Japan partner requirements for employers.
- patchEmployer
- input
- employerName: The name of the placement company that posts this job.
- employerAttributes: Information about the placement company that posts this job.
- input
createSourcedJobPostings
The following fields are required in addition to the fields in Basic job posting.
- createSourcedJobPostings
- input
- jobPostings
- body
- description: Provide the following information:
- The client company’s information.
- The placement company’s information.
- The fact that the placement company posted this job on behalf of the client company.
- description: Provide the following information:
- metadata
- jobSource
- companyName: The name of the client company.
- sourceName: The
sourceNameof the placement company. ThesourceNamemust be different from the one used forsourceType: "Employer". - sourceType: Set to
"Staffing Agency". - isPlacement: Set to
TRUE.
- jobSource
- body
- jobPostings
- input
Example job posting request
The following example shows how to 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] } } } ] } ) }}