Announcement

Collapse
No announcement yet.

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

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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


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

    Comment

    Working...
    X