Amazon S3 CSV file to Factorial employees
Read CSV file entries from Amazon S3 bucket using them to create employees using Factorial HR API
Clone to YepCodeShare
Read CSV file entries from Amazon S3 bucket
Used integrations:
class AwsS3SourceReadRemoteCsv { async init() { // initialize an awsS3 client this.awsS3 = yepcode.integration.awsS3("your-aws-s3-credential-name"); } async fetch(publish, done) { // choose your csv to download const getObjectCommand = new GetObjectCommand({ Bucket: "your-bucket-name", Key: "your-file-name" }); const getObjectResult = await this.awsS3.send(getObjectCommand); // Result.Body is a stream of object content getObjectResult.Body.pipe(csv.parse({ delimiter: ",", columns: true })).on("data", publish).on("end", done); } async close() {}}
Create employees using Factorial HR API
Used integrations:
class AxiosTargetFactorialCreateEmployee { async init() { // initialize an axios client with factorial credentials: // baseUrl: https://api.factorialhr.com/api/v2/ // HTTP Headers: { "Authorization": "Bearer your-access-token" } this.axiosClient = yepcode.integration.axios("your-factorial-credential-name"); } async consume(item) { // You may check the full API documentation at: // https://apidoc.factorialhr.com/#0025727f-fcf5-4289-9023-3506a11918a9 await this.axiosClient.post(`/core/employees`, { // map your fields from item email: item.email, first_name: item.first_name, last_name: item.last_name, birthday_on: "<date>", start_date: "today", regular_access_starts_on: "YYYY-MM-DD", manager_id: "<long>", role: "<string>", timeoff_manager_id: "<long>", terminated_on: "<date>", termination_reason: "<string>" }); } async close() {}}
Find related recipes
FAQs
These recipes are a good starting point for you to build your own YepCode processes and solve your integration and automation problems.
YepCode is a SaaS platform that allows to create, execute and monitor integrations and automations using source code in a serverless environment.
We like to call it the Zapier for developers, since we bring all the agility and benefits of NoCode tools (avoid server provisioning, environment configuration, deployments,...), but with all the power of being able to use a programming language like JavaScript with a NodeJS engine.
You only have to fill the sign up form and your account will be created with our FREE plan (no credit card required).
YepCode has been created with a clear enterprise approach (multi-tenant environment, team management, high security and auditing standards, IdP integrations, on-premise options,...) so we can be the Swiss army knife of any team of engineering, especially those that need to extract or send information to external systems, and where a certain dynamism or adaptation to change is necessary in that process.
Sure! You just need to do some configuration to allow YepCode servers to connect to that service. Check our docs page to get more information.