Try   HackMD

Apps Flowlu

CRM (module_name: crm)

  • Accounts (entity_name: account)
  • Relations (entity_name: relation)
  • E-mail addresses of accounts (entity_name: email)
  • Accounts categories (entity_name: account_category)
  • Honorific titles (entity_name: honorific_title)
  • Industries (entity_name: industry)
  • Leads (entity_name: lead)
  • Pipelines (entity_name: pipeline)
  • Pipeline stages (entity_name: pipeline_stage)
  • Lead sources (entity_name: source)
  • Lead loss reasons (entity_name: loss_reason)

Finance (module_name: fin)

  • Organization (entity_name: organization)
  • Organization account (entity_name: bank_account)
  • Invoice (entity_name: invoice)
  • Invoice item (entity_name: invoice_items)
  • Payment (entity_name: customer_payment)
  • Transaction (entity_name: transaction)
  • Estimate (entity_name: estimate)
  • Estimate item (entity_name: estimate_item)

Tasks (module_name: task)

  • Task (entity_name: task)
  • Task time log (entity_name: time_spent)

Agile (module_name: agile)

  • Issue (entity_name: issue)
  • Issue type (entity_name: issue_type)
  • Sprint (entity_name: sprints)
  • Project (entity_name: project)
  • Project users (entity_name: projects_users)
  • Workflow (entity_name: workflow)
  • Stage (entity_name: stage)
  • Issue types projects (entity_name: issue_types_projects)
  • Tag (entity_name: tag)
  • Relation between tag and task (entity_name: tags_issues)
  • Category (entity_name: category)
  • Issue relation (entity_name: issue_relation)
  • Issue relation type (entity_name: issue_relation_type)
  • Issue relation name (entity_name: issue_relation_names)

Examples:

curl -H "application/x-www-form-urlencoded" -X POST -d {"type":1,"name":"String"} https://<account_code>.flowlu.com/api/v1/module/<module_name>/<entity_name>/create/?api_key=<api_key>
curl -H "application/x-www-form-urlencoded" -X POST -d {"type":1,"name":"String"} https://<account_code>.flowlu.com/api/v1/module/<module_name>/<entity_name>/update/<entity_id>?api_key=<api_key>
curl -X GET https://<account_code>.flowlu.com/api/v1/module/<module_name>/<entity_name>/get/<entity_id>?api_key=<api_key>
curl -X GET https://<account_code>.flowlu.com/api/v1/module/<module_name>/<entity_name>/list?search=flowlu&page=1&api_key=<api_key>