WaiveCar / Waivecar

Waivecar
https://waivecar.com
0 stars 0 forks source link

Api: Airtable Integration #1583

Open daleighan opened 4 years ago

daleighan commented 4 years ago

Goals:

(Airtable API docs here: https://airtable.com/appPTFWqjSvOrKcfu/api/docs#curl/table:screens:fields)

daleighan commented 4 years ago
create table telematics (
  id int(11) not null auto_increment,
  telem_id  varchar(28) not null,
  car_id varchar(28) default null,
  created_at datetime not null,
  updated_at datetime not null,
  deleted_at datetime default null,
  last_seen_at datetime default null,
  PRIMARY KEY(`id`)
);
alter table cars add column airtable_data text default null after comments;
daleighan commented 4 years ago

There is now a route for listing unassigned telematics: api.waivecar.com/unassignedTelematics