Template action not getting updated through api call

Template action not getting updated through api call

I tried to update a template using this API
https://www.zoho.com/sign/api/#update-template

I am sending this for the body of the request
  1. {
    "templates": {
    "actions": [
    {
    "action_type": "SIGN",
    "role": "1",
    "recipient_name": "My name",
    "recipient_email": "example@example.com",
    "in_person_name": "My name",
    "verify_recipient": true,
    "signing_order": 1,
    "verification_type": "EMAIL"
    },
    ],
    }
    }
In response I get the template details but has old details and is not updated.
but, it says in the response.
  • message"Template has been updated",
  • status"success"

 please help.