content library item: transfer endpoint
The
transfer_endpoint
structure encapsulates a URI along with extra information about it.Representation:
{
"ssl_certificate_thumbprint" : "string",
"uri" : "http://myurl.com"
}
"ssl_certificate_thumbprint" : "string",
"uri" : "http://myurl.com"
}
Attributes:
Name | Type | Description |
---|---|---|
Required | ||
uri | URI | Transfer endpoint URI. The supported URI schemes are: http , https , and ds . An endpoint URI with the
When the transfer endpoint is a datastore location, the server can import the file directly from the storage backing without the overhead of streaming over HTTP. |
Optional | ||
ssl_certificate_thumbprint | string | Thumbprint of the expected SSL certificate for this endpoint. Only used for HTTPS connections. The thumbprint is the SHA-1 hash of the DER encoding of the remote endpoint's SSL certificate. If set, the remote endpoint's SSL certificate is only accepted if it matches this thumbprint, and no other certificate validation is performed. Optional. If not specified, standard certificate validation is performed. |