I need help implementing a custom REST API using the POST method in Drupal 8.
I have a REST resource plugin class and get () method. I can access this resource using the GET method and it works fine.
I have a post () method in the same class, but it cannot access the resource using the POST method, although when viewing through the "REST UI" module, the message "POST" is displayed.

But when accessed via the POST method, it is displayed after an error.
{"message":"No route found for \u0022POST \/iot\/location\/\u0022: Method Not Allowed (Allow: GET)"}
I am using the POSTMAN Chrome extension and screenshot below

I used the following blog to write a REST API, and my code is almost the same as the code shown in this blog post.
http://enzolutions.com/articles/2014/12/16/how-to-create-a-rest-resource-in-drupal-8/
Thanks at Advance.