{"id":37235688,"url":"https://github.com/jaimey/vtiger-restapi-php","last_synced_at":"2026-01-16T04:51:13.100Z","repository":{"id":56995869,"uuid":"397743540","full_name":"jaimey/vtiger-restapi-php","owner":"jaimey","description":"Libreria PHP para vtiger","archived":false,"fork":false,"pushed_at":"2024-08-01T20:19:44.000Z","size":14,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-11T02:02:57.068Z","etag":null,"topics":["php","vtiger"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jaimey.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-08-18T21:51:55.000Z","updated_at":"2024-11-12T15:05:33.000Z","dependencies_parsed_at":"2022-08-21T11:10:23.983Z","dependency_job_id":null,"html_url":"https://github.com/jaimey/vtiger-restapi-php","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jaimey/vtiger-restapi-php","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaimey%2Fvtiger-restapi-php","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaimey%2Fvtiger-restapi-php/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaimey%2Fvtiger-restapi-php/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaimey%2Fvtiger-restapi-php/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jaimey","download_url":"https://codeload.github.com/jaimey/vtiger-restapi-php/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaimey%2Fvtiger-restapi-php/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28420804,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T10:47:48.104Z","status":"ssl_error","status_checked_at":"2026-01-14T10:46:19.031Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["php","vtiger"],"created_at":"2026-01-15T04:04:03.735Z","updated_at":"2026-01-15T04:04:04.285Z","avatar_url":"https://github.com/jaimey.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\nVtiger REST API client for PHP\n\n#### Installation\n```bash\ncomposer require jaime/vtiger-restapi-php\n```\n#### Usage\n\n```php\nrequire 'vendor/autoload.php';\n\n$vtiger = new vtiger('VTIGER_URL', 'VTIGER_USERNAME', 'VTIGER_ACCESSKEY');\n```\n\n##### Create\n\n```php\n$params      = [\n    'assigned_user_id'         =\u003e '1',\n    'subject'                  =\u003e 'Test',\n    'quotestage'               =\u003e 'Created',\n    'productid'                =\u003e '14x3',\n    'description'              =\u003e 'Test Description',\n    'hdnTaxType'               =\u003e 'group', // group or individual taxes are obtained from the application\n    'LineItems'                =\u003e [\n        '0' =\u003e [\n            'productid'        =\u003e '14x3',\n            'sequence_no'      =\u003e '1',\n            'quantity'         =\u003e '1.000',\n            'listprice'        =\u003e '500.00',\n            'comment'          =\u003e 'sample comment product',\n        ],\n\n    ],\n];\n\n$result = $vtiger-\u003ecreate($params, 'Quotes');\n```\n\n#### Update\n```php\n$params = ['id' =\u003e '12x3654', 'lastname' =\u003e 'Test Lead', 'email' =\u003e 'test@test.com', 'assigned_user_id' =\u003e '19x1'];\n$result = $vtiger-\u003eupdate($params);\n```\n\n#### Retrieve\n```php\n$result = $vtiger-\u003eretrieve('5x3679');\n```\n\n#### Revise\n```php\n$params = ['id' =\u003e '12x3653', 'email' =\u003e 'test2@test.com', 'assigned_user_id' =\u003e '19x1'];\n$result = $vtiger-\u003erevise($params);\n```\n\n#### Describe\n```php\n$result = $vtiger-\u003edescribe('Contacts');\n```\n#### Query\n```php\n$params = ['email' =\u003e 'test2@test.com'];\n$select = ['mobile'];\n\n$result = $vtiger-\u003equery('Contacts', $params, $select);\n```\n\n#### ListTypes\n```php\n$result = $vtiger-\u003elistTypes();\n```\n\n#### RetrieveRelated\n```php\n$result = $vtiger-\u003eretrieveRelated('12x3653', 'Activities', 'Calendar');\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaimey%2Fvtiger-restapi-php","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaimey%2Fvtiger-restapi-php","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaimey%2Fvtiger-restapi-php/lists"}