I'm using a service account to use Box API for "sign_requests". It works just fine when I have template tags embedded. But if I use regular templates, it doesn't work.
Â
For example this is fine:
Â
{
  "signers": s
    {
      "role": "signer",
      "email": "my@email.com"
    }
  ],
  "source_files":
    {
      "type": "file",
      "id": ",file id]"
    }
  ],
  "parent_folder": {
    "type": "folder",
    "id": "Âparent folder]"
  }
}
Â
BUT If I add the key/value Â
Â
"template_id": "
tempalate id here]",
Â
I get the following error:
Â
{
  "type": "error",
  "code": "not_found",
  "status": 404,
  "message": "Not found",
  "request_id": "0cc581306512a963f5bd9a0f04fc20d95",
  "context_info": {
    "errors": d
      {
        "name": "Not Found",
        "message": "Not Found: Unsuccessful HTTP status code received.",
        "reason": "not_found"
      }
    ]
  }
}