EmbeddingAsset
Overview
Description | Method | Endpoint |
---|---|---|
Create cookie | POST |
/hosting/api/client/{clientId}/domain/{domainId}/embedding/{embeddingId}/asset |
Read all cookies | GET |
/hosting/api/client/{clientId}/domain/{domainId}/embedding/{embeddingId}/asset |
read cookie | GET |
/hosting/api/client/{clientId}/domain/{domainId}/embedding/{embeddingId}/asset/{assetId} |
update cookie | PUT |
/hosting/api/client/{clientId}/domain/{domainId}/embedding/{embeddingId}/asset/{assetId} |
remove cookie | DELETE |
/hosting/api/client/{clientId}/domain/{domainId}/embedding/{embeddingId}/asset/{assetId} |
Create cookie
Endpoint:/hosting/api/client/{clientId}/domain/{domainId}/embedding/{embeddingId}/asset
Method:POST
Query:
{clientId}
: string - The ID of a CCM19-customer account{domainId}
: string - The ID of a domain that exists in the client account{embeddingId}
: string - The ID of an embedding that is present in the domain
Payload:EmbeddingAsset
Response:
201
- Resource successfully created- EmbeddingAsset
400
- Invalid or missing properties
Read all cookies
Endpoint:/hosting/api/client/{clientId}/domain/{domainId}/embedding/{embeddingId}/asset
Method:GET
Query:
{clientId}
: string - The ID of a CCM19-customer account{domainId}
: string - The ID of a domain that exists in the client account{embeddingId}
: string - The ID of an embedding that is present in the domain
Response:
200
- Success- EmbeddingAsset[]
Read cookie
Endpoint:/hosting/api/client/{clientId}/domain/{domainId}/embedding/{embeddingId}/asset/{assetId}
Method:GET
Query:
{clientId}
: string - The ID of a CCM19-customer account{domainId}
: string - The ID of a domain that exists in the client account{embeddingId}
: string - The ID of an embedding that is present in the domain{assetId}
: string - The ID of the resource to be handled
Response:
200
- Success- EmbeddingAsset
404
- Resource not found
Update cookie
Endpoint:/hosting/api/client/{clientId}/domain/{domainId}/embedding/{embeddingId}/asset/{assetId}
Method:PUT
Query:
{clientId}
: string - The ID of a CCM19-customer account{domainId}
: string - The ID of a domain that exists in the client account{embeddingId}
: string - The ID of an embedding that is present in the domain{assetId}
: string - The ID of the resource to be handled
Payload:EmbeddingAsset
Response:
200
- Success- EmbeddingAsset
400
- Invalid or missing properties404
- Resource not found
Remove cookie
Endpoint:/hosting/api/client/{clientId}/domain/{domainId}/embedding/{embeddingId}/asset/{assetId}
Method:DELETE
Query:
{clientId}
: string - The ID of a CCM19-customer account{domainId}
: string - The ID of a domain that exists in the client account{embeddingId}
: string - The ID of an embedding that is present in the domain{assetId}
: string - The ID of the resource to be handled
Response:
204
- Resource successfully deleted404
- Resource not found