Magento 2 API – Get Admin Token
End-to-end Magento integration
Integrate any app or service. Consult our API development experts.
Hello, Magento peeps!
In my last blog post I had covered everything you need to know about Magento 2 API while developing a custom app. In case you missed reading it, you can read it at: What is Magento 2 API & You can Use it?
In this blog post I will guide you through Magento 2 API – Get Admin Token.
Magento 2 allows the developers to access the platform through its APIs. Magento 2 APIs are powerful and allow different levels of access to the guest users, customers, and admin users. The admin users may require to pass the admin token to perform any admin-level activities through the APIs.
In order to access the Magento 2 admin panel through APIs, you may require to first get an admin token. Here is the complete tutorial to get admin token through API in Magento 2.
How to Get Admin Token Using Magento 2 API?
The admin token in Magento 2 verifies that the call is authentic to access the system resources and perform certain actions. To get an admin token in Magento 2, the client sends the admin user’s username and password to verify the identity through an API call.
Generally, the admin token in Magento 2 is valid for four hours. It can be changed from Stores > Settings > Configuration > Services > OAuth > Access Token Expiration > Admin Token Lifetime (hours).
Provided below is the complete API call to get admin token in Magento 2.
Method: Post
URL: store_url/rest/V1/integration/admin/token
Headers: Content-Type: application/json
Body:
1 2 3 4 |
{ "username": "your-username", "password": "your-password" } |
Response:
1 |
5r8cvmpr11j6gmau8990rcj2qk7unh8i |
That’s it!
This is how you can get admin token in Magento 2 through API. This admin token can be used in the header of every API call that requires admin access.
Conclusion
Magento 2 admin token is essential to access the API resource. The token is essential to make API calls that require admin access in Magento 2. I hope this tutorial will help you to get admin token in Magento 2 through REST API.
In case you still have any queries or doubts regarding it, feel free to comment. I would be happy to help you. 💫
Also, do not forget to share this Magento 2 API tutorial with your developer friends through social media! 🔗
Thanks for reading. 😊
Jignesh Parmar
An expert in his field, Jignesh is the team leader at Meetanshi and a certified Magento developer. His passion for Magento has inspired others in the team too. Apart from work, he is a cricket lover.
Prev
How to Setup Discount with Minimum Purchase in Magento 2
Magento 2 API – Get All Store IDs, Names, and Codes
Next