- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2018 11:27 AM
What is the way to create a document and set a managed blob on it using the rest API, on a 10.3 snapshot? I have a custom blob provider, my client layer knows the id of the blob in the remote provider.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2018 11:42 AM
The value to send for the blob (file:content
for example)
{
"entity-type: "document",
. . .
"properties": {
. . .
"file:content": {
"providerId": "THE_PROVIDER_ID",
"key": "THE_BLOBKEY"
}
}
(see JSONManagerBlobDecoder)
Notice: Worked well during a test Nuxeo/Simflofy/Documentum
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-19-2018 11:42 AM
The value to send for the blob (file:content
for example)
{
"entity-type: "document",
. . .
"properties": {
. . .
"file:content": {
"providerId": "THE_PROVIDER_ID",
"key": "THE_BLOBKEY"
}
}
(see JSONManagerBlobDecoder)
Notice: Worked well during a test Nuxeo/Simflofy/Documentum
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-23-2018 04:21 AM
thank you, that is still for the same use case;)
