domains
Operations addressed under /domains — 4 operations.
get-domain-definition-list
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Response body, read from the service source
The route declares its response as IEnumerable<DomainDefinitionDto>.
| Field | Declared type | Nullable |
|---|---|---|
Id | Guid | no |
Code | string | no |
DaprAppId | string | no |
DaprNamespace | string | no |
Url | string | no |
ParentDomainId | Guid? | yes |
Name | string | no |
HasCompensation | bool | no |
Priority | int | no |
HasBpm | bool | no |
IsActive | bool | no |
Translations | IEnumerable<DomainDefinitionTranslationDto> (collection) | no |
Member names are the service's declaration names.
query Parameters
orderByorderSortpageIndexpageSizeget-domain-definition-list › Responses
Success. Returns a collection of records. Of 135 operations in this state that were probed (measured against a reference deployment on parameterless GET routes only), 118 answered and 118 returned a bare JSON array.
Array of catalog-declared response records.
codedaprAppIddaprNamespacehasBpmhasCompensationidisActivenameparentDomainIdpriorityurlcreate-domain-definition
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Response body, read from the service source
The route returns AuraCommandDto<Guid>, which is the response body itself and not a wrapper around one: the framework declares it as a class with a single property, Id, of type Guid. A caller gets a JSON OBJECT with one field, not a bare value. The field is id on the wire.
| Field | Name on the wire | Declared type | Nullable |
|---|---|---|---|
Id | id | Guid | no |
Member names are the service's declaration names.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_CORE_22 | 400 | EXISTS_DOMAIN_DEFINITION_WITH_THIS_NAME | There is already a domain with this name. |
ERR_CORE_23 | 400 | EXISTS_DOMAIN_DEFINITION_WITH_THIS_CODE | There is already a domain with this code. |
ERR_CORE_25 | 400 | PARENT_DOMAIN_DEFINITION_ID_IS_NOT_FOUND | Parent Domain cannot be found. |
ERR_CORE_26 | 400 | EXISTS_DOMAIN_DEFINITION_WITH_THIS_DAPPR_ID | There is already a domain with this daprApp. |
ERR_CORE_77 | 400 | THERE_IS_ALREADY_DOMIAN_DEFINITION_WITH_THIS_URL | There is already a domian with this url. |
create-domain-definition › Request Body
codedaprAppIddaprNamespacehasBpmpriorityurlhasCompensationparentDomainIdcreate-domain-definition › Responses
Success. The catalog declares this returns a single record. Of 25 operations in this state with a probeable route, 8 answered and 6 returned a single record — the other two returned a collection and a bare boolean.
idget-domain-definition-by-id
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Response body, read from the service source
The route declares its response as DomainDefinitionDto.
| Field | Declared type | Nullable |
|---|---|---|
Id | Guid | no |
Code | string | no |
DaprAppId | string | no |
DaprNamespace | string | no |
Url | string | no |
ParentDomainId | Guid? | yes |
Name | string | no |
HasCompensation | bool | no |
Priority | int | no |
HasBpm | bool | no |
IsActive | bool | no |
Translations | IEnumerable<DomainDefinitionTranslationDto> (collection) | no |
Member names are the service's declaration names.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_CORE_31 | 400 | DOMAIN_ID_IS_NOT_FOUND | Domain cannot be found. |
path Parameters
idget-domain-definition-by-id › Responses
Success. The catalog declares this returns a single record. Of 25 operations in this state with a probeable route, 8 answered and 6 returned a single record — the other two returned a collection and a bare boolean.
codedaprAppIddaprNamespacehasBpmhasCompensationidisActivenameparentDomainIdpriorityurlupdate-domain-definition
Add Authorization: Bearer <token> yourself — generated samples and Try it do not attach a credential.
Error codes this operation is known to raise
| Code | Status | Meaning | Message |
|---|---|---|---|
ERR_CORE_134 | 400 | IS_ACTIVE_NOT_BE_NULL | isActive field cannot be left blank. |
ERR_CORE_146 | 400 | HAS_BPM_NOT_BE_NULL | Has Bpm field cannot be left blank. |
ERR_CORE_31 | 400 | DOMAIN_ID_IS_NOT_FOUND | Domain cannot be found. |
path Parameters
idupdate-domain-definition › Request Body
priorityhasBpmisActiveupdate-domain-definition › Responses
Success. The catalog declares no response fields for this operation. The body is UNKNOWN CONTENT. The response type this route registers was read from the service's own source and is published on this operation as x-aura-code-response.