| GET | /v1/provision/options |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Packs | form | List<PackOption> | No | |
| TimeZones | form | List<string> | No | |
| RoleTemplates | form | List<RoleTemplate> | No | |
| StarterCatalog | form | List<StarterCatalogItem> | No | |
| ResponseStatus | form | ResponseStatus | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Code | form | string | No | |
| Name | form | string | No | |
| PackId | form | Guid | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Name | form | string | No | |
| Description | form | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Name | form | string | No | |
| Rate | form | decimal | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/provision/options HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
Packs:
[
{
Code: String,
Name: String,
PackId: 00000000000000000000000000000000
}
],
TimeZones:
[
String
],
RoleTemplates:
[
{
Name: String,
Description: String
}
],
StarterCatalog:
[
{
Name: String,
Rate: 0
}
],
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
}
}