Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

muneebahmad487's avatar

How to create an Event on LinkedIn using API in PHP?

Hello, I am working with LinkedIn API on a website. I want to create events on LinkedIn using API in PHP/Laravel? I have searched about it but can not get any help. There are Laravel Packages but event creation is not added in those packages. I have searched one link on LinkedIn developer docs but it is not working now.

Anyone have any idea about it please help. Thanks in advance.

0 likes
1 reply
automica's avatar

@muneebahmad487 if you are trying to interact with LinkedIn from laravel via its api, all you’ll be doing is making post requests with the relevant payload and then relating the response back to other parts of your application.

You don’t need anything special in laravel for this - just use Laravel’s HTTP client which is a wrapper around Guzzle, See https://laravel.com/docs/8.x/http-client

For specific api details for LinkedIn check https://docs.microsoft.com/en-gb/linkedin/

Please or to participate in this conversation.