我使用复合模板生成混合仪式信封:
{
"status": "sent",
"emailBlurb": "testing creation from template",
"emailSubject": "Please sign this template",
"compositeTemplates": [{
"serverTemplates": [{
"sequence": "1",
"templateId": "3f35423e-884a-4bf2-a9b5-19eaac4a5b8f"
}
],
"inlineTemplates": [{
"sequence": "1",
"recipients": {
"inPersonSigners": [{
"name": "LLLLL",
"email": "LLLL@some.com",
"hostemail": "LLLLL@some.com",
"hostname": "LLLLLL",
"roleName": "Signer 1",
"recipientId": "1",
"clientUserId": "1000",
"signerName": "John Signer",
"signerEmail": "jsigner@ds.com",
"requireIdLookUp": "true",
"idCheckConfigurationName": "SMS Auth $",
"smsAuthentication": {
"senderProvidedNumbers": ["+34676363577"]
}
}
],
"signers": [{
"name": "VVVVVVV",
"email": "v@onecompany.com",
"roleName": "Signer 2",
"clientUserId": "2000",
"routingOrder": "2",
"recipientId": "2"
}, {
"name": "ZZZZZ",
"email": "z@onecompany.com",
"roleName": "Signer 3",
"clientUserId": "3000",
"routingOrder": "3",
"recipientId": "3"
}
]
},
"customFields": {
"textCustomFields": [{
"value": "8009E0000006Qu5QAJ",
"required": "false",
"show": "false",
"name": "##SFContract"
}
]
},
}
]
}
],
"eventNotification": {
"RecipientEvents": [{
"recipientEventStatusCode": "Completed"
}, {
"recipientEventStatusCode": "sent"
}, {
"recipientEventStatusCode": "delivered"
}, {
"recipientEventStatusCode": "declined"
}
],
"EnvelopeEvents": [{
"envelopeEventStatusCode": "Delivered"
}, {
"envelopeEventStatusCode": "completed"
}, {
"envelopeEventStatusCode": "sent"
}, {
"envelopeEventStatusCode": "Declined"
}
]
}
}
该模板具有一个亲自签名者作为第一签名者(路由顺序1)和两个电子邮件签名者作为第二签名者(路由顺序2)
对于要发送的电子邮件,从签名者中删除clientuserid
参数。此参数指示签名者是嵌入签名者。
英文原文:http://emberjs.com/guides/routing/generated-objects/ 正如在定义路由中所说的,无论何时,只要你定义了一个新的路由,Ember.js都会试着根据命名惯例寻找相对应的路由,控制器,视图还有模板类。一旦有任何一个对象找不到,那么在内存中,相对应的对象将会被生成。 生成的路由 假设你有下列路由: 1 2 3 App.Router.map(fu
我试图使用https://developers.DocuSign.com/esign-rest-api/reference/envelopes/envelopes/get这条路由来获取DocuSign中特定信封的信息,并且我想添加参数来获取单个签名者的状态,但是该参数似乎没有任何作用 尝试包含其他值(文档、标记等)。也不会更改响应。 无论我从自己的代码还是从DS的“API Explorer”工具中
生成路由映射缓存optimize:route 路由映射缓存用于开启路由延迟解析的情况下,支持路由反解的URL生成,如果你没有开启路由延迟解析或者没有使用URL路由反解生成则不需要生成。 生成路由映射缓存的命令: php think optimize:route 执行后,会在runtime目录下面生成route.php文件。
我正在做一个C#项目,试图生成一个DocuSign信封。 作为起点,我试图在https://github.com/docusign/eg-01-csharp-jwt-framework.通过DocuSign JWT示例 我转到了控制台应用程序让我转到的URL。https://account-d.docusign.com/oauth/auth?response_type=code 完成该过程后,我确
我已经从3.11切换到Openshift 4.3。我在3.11中使用了入口,并包含了tls。hosts部分使用默认名称空间中的默认证书,这样创建的路由将得到保护。 但在4.3中,不允许添加此“tls.hosts”部分。那么,如果没有这一部分,我如何获得安全路线?有办法吗?或者我必须使用路线?4.3中的入口如下 我在创建入口时没有看到任何错误,但它创建的路由不安全。它 http://xxxxxx/a
我们使用的实现以编程方式实现路由。我们有两个服务,它们应该在相同的路由路径上注册,如果另一个不存在,其中一个将作为后备。具有特定路径的首选路由是: 因此,当调用时,应该使用第一条路由,而当调用时,应该使用第二条路由。 问题是,即使是路线上的order属性似乎也不能解决这个问题;目前,我们发现没有可能设置这种路线的顺序/优先级。这是intender吗?