Giter Site home page Giter Site logo

24sevenoffice-php-adapter's Introduction

24SevenOffice-PHP-Adapter

A PHP Adapter to use in integrations with https://24sevenoffice.com/ CRM platform

Getting Started

Use the config.php to set the 24sevenoffice credentials http://developer.24sevenoffice.com/dev/#api-intro,

      $username = "USER";  //Change this to your client user or community login
      $password = "PASS";  //Change this to your password
      $applicationid = "APP_ID";  //Change this to your applicationId

Functions

To call the API endpoint use a POST to the index document

http://YourHost/index.php?type=TYPE

Save Companies

Use the type=new

To save a company to the CRM you can use the following method and add the needed fields,

        $company["companies"][0]['Name'] ="NAME";
        $company["companies"][0]['Type'] ="Business";
        $company["companies"][0]['OrganizationNumber'] ="ORG_ID";

Request Body:

{
	"Name" : "NAME TO SENT",
	"Email" : "EMAIL ADD",
	"Account_ID" : "A123"
}

Response:

Success Will return the added organization

{
    "status": 1,
    "data": {
        "Id": 46,
        "OrganizationNumber": "A123",
        "Name": "NAME TO SENT",
        "EmailAddresses": {
            "Invoice": {
                "Description": "EMAIL ADD",
                "Name": "EMAIL ADD",
                "Value": "EMAIL ADD"
            },
            "Work": {
                "Description": "EMAIL ADD",
                "Name": "EMAIL ADD",
                "Value": "EMAIL ADD"
            }
        },
        "Type": "Business",
        "LedgerCustomerAccount": 0,
        "LedgerSupplierAccount": 0
    },
    "identity": "{CURRENT IDENTITY OBJECT}"
}

Fail Will return the error with the status code of 1

Sample:

{
    "status": 0,
    "data": "Property Type is missing.",
    "identity": "{CURRENT IDENTITY OBJECT}"
}

For more data fields http://developer.24sevenoffice.com/diverse/apicompanyservice-datatypes/

TODO

  • Create a REST Endpoint to call the functions directly
  • Make the functions run independently on requests

24sevenoffice-php-adapter's People

Contributors

chamathpali avatar rehrumesh avatar

Watchers

James Cloos avatar Janakshi Dulanga avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.