{"id":37003339,"url":"https://github.com/ova-studio/ips-api","last_synced_at":"2026-01-14T00:32:59.390Z","repository":{"id":57034188,"uuid":"474287326","full_name":"ova-studio/ips-api","owner":"ova-studio","description":"Package for IPS Invision Community REST API","archived":false,"fork":false,"pushed_at":"2022-03-27T10:08:30.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-17T13:22:35.064Z","etag":null,"topics":["api","invision-community","ips","laravel","rest-api"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ova-studio.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-03-26T08:29:49.000Z","updated_at":"2022-03-26T08:46:39.000Z","dependencies_parsed_at":"2022-08-23T22:10:19.817Z","dependency_job_id":null,"html_url":"https://github.com/ova-studio/ips-api","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/ova-studio/ips-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ova-studio%2Fips-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ova-studio%2Fips-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ova-studio%2Fips-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ova-studio%2Fips-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ova-studio","download_url":"https://codeload.github.com/ova-studio/ips-api/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ova-studio%2Fips-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28406508,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T21:51:37.118Z","status":"ssl_error","status_checked_at":"2026-01-13T21:45:14.585Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["api","invision-community","ips","laravel","rest-api"],"created_at":"2026-01-14T00:32:58.574Z","updated_at":"2026-01-14T00:32:59.377Z","avatar_url":"https://github.com/ova-studio.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IPS REST API Laravel Client\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/ova-studio/ips-api.svg?style=flat-square)](https://packagist.org/packages/ova-studio/ips-api)\n[![Total Downloads](https://img.shields.io/packagist/dt/ova-studio/ips-api.svg?style=flat-square)](https://packagist.org/packages/ova-studio/ips-api)\n\n# [IPS REST API Documentation](https://invisioncommunity.com/developers/rest-api)\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require ova-studio/ips-api\n```\n\n## Configuration\n\nIn `config/services.php`:\n\n```php\n'ips' =\u003e [\n    // ... other options\n    'base_uri' =\u003e env('IPS_BASE_URI'),\n    'api_key' =\u003e env('IPS_API_KEY'),\n    'default_user' =\u003e env('IPS_DEFAULT_USER_ID')\n]\n```\n\n## Implemented API Methods\n\n### Sending private message\n\n[Method documentation](https://invisioncommunity.com/developers/rest-api?endpoint=core/messages/POSTindex)\n\nBasic usage:\n```php\n$api = new IpsApi();\n$to_user_id = 1;\n\n$api-\u003esystem()-\u003emessages()-\u003ecreate($to_user_id, 'Message title', 'Message body');\n```\n\nBy default, message is sent from default user from config file.\nIf you want to send message from another user, you can set user id with\n`withSender` method.\n```php\n$api = new IpsApi();\n$from_user_id = 1;\n$to_user_id = 1;\n\n$api-\u003esystem()-\u003emessages()-\u003ewithSender($from_user_id)-\u003ecreate($to_user_id, 'Message title', 'Message body');\n```\n\n### Sending message to topic\n\n[Method documentation](https://invisioncommunity.com/developers/rest-api?endpoint=forums/posts/POSTindex)\n\nBasic usage:\n```php\n$api = new IpsApi();\n$topic_id = 1;\n\n$api-\u003eforums()-\u003eposts()-\u003ecreate($topic_id, '\u003cp\u003eMessage HTML body\u003c/p\u003e');\n```\n\nBy default, message is sent from default user from config file.\nIf you want to send message from another user, you can set user id with\n`withAuthor(int $author, ?string $author_name = null)` method.\n\nIf author ID is equal 0, author name is required.\n```php\n$api = new IpsApi();\n$from_user_id = 1;\n$topic_id = 1;\n\n$api-\u003eforums()-\u003eposts()\n        -\u003ewithAuthor($from_user_id) // or -\u003ewithAuthor(0, 'Somename')\n        -\u003ecreate($to_user_id, 'Message title', 'Message body');\n```\n\n### Testing\n\n```bash\ncomposer test\n```\n\n### Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n### Security\n\nIf you discover any security related issues, please email chaker@ova.in.ua instead of using the issue tracker.\n\n## Credits\n\n-   [Danylo Kolodiy](https://github.com/ova-studio)\n-   [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n\n## Laravel Package Boilerplate\n\nThis package was generated using the [Laravel Package Boilerplate](https://laravelpackageboilerplate.com).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fova-studio%2Fips-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fova-studio%2Fips-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fova-studio%2Fips-api/lists"}