Espo CRM API Create account : Post - 405 Method Not Allowed

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rmartin
    Junior Member
    • Apr 2022
    • 1

    Espo CRM API Create account : Post - 405 Method Not Allowed

    Hi Dear

    I try to use Postman for create a new Account.
    I use "https://espourl.com/api/v1/Account"
    PUT action with header x-api-key
    In json body I add:

    {
    "name": "Test company name",
    "deleted": false,
    .....

    I receive : 405 Method Not Allowed

    Installation is on docker so if the problem can be on webserver I don't understand how I need to do

    have you an idea?
    Thanks
    Fabio

  • dimyy
    Active Community Member
    • Jun 2018
    • 569

    #2
    PUT method inly for update existing entity. For creating new entity use POST

    Comment

    Working...