UpdateWeatherSubscription

 

DatasourceService / UpdateWeatherSubscription

 

Description: Update Weather Subscription

URL: http://{your-server-url}/api/v1/core/datasources/weathers/subscriptions/{subscriptionid}

Method: PUT

Token Required: True


Request Headers:
content-type: application/json or content-type: application/xml
token: {token}
currentaccountid: {accountid - optional and default value is user's own account}
Required Roles:

Portal Administrator, Account Administrator, Account Owner, Content Administrator, Widget Manager

Rights:

Type: Nexus.AppSpace.Service.Contract.Model.Enums.Rights.Rights

Right Require
Widget_Management Yes
Application_Management Yes

Request:

Type: Nexus.AppSpace.Service.Contract.Messages.AppSpaceIntegration.v1.Datasource.DatasourceRequest

Parameter Type Nullable Comment
Request.WeatherSubscription Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.v1.DataSources.Weather.WeatherSubscription False AdditionalInfos - If additionalInfos is null, it would not update it and if have values, it will replace with the additionalInfos. Set additionalInfos to empty if would like to remove it.

Response:

Type: Nexus.AppSpace.Service.Contract.Messages.AppSpaceIntegration.v1.Datasource.DatasourceResponse

Parameter Type
Response.WeatherSubscription Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.v1.DataSources.Weather.WeatherSubscription

The following is an example request Xml body:
<DatasourceRequest xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages.AppSpaceIntegration.v1.Datasource" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <WeatherSubscription xmlns:a="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.v1.DataSources.Weather">
    <a:City>String</a:City>
    <a:Country>String</a:Country>
    <a:Forecast>123</a:Forecast>
    <a:State>String</a:State>
    <a:Zip>String</a:Zip>
    <a:additionalInfos xmlns:b="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Model.DTO">
      <b:KeyValuePair>
        <b:Key>String</b:Key>
        <b:Value>String</b:Value>
      </b:KeyValuePair>
    </a:additionalInfos>
  </WeatherSubscription>
</DatasourceRequest>

The following is an example request Json body:
{
	"WeatherSubscription":{
		"City":"String",
		"Country":"String",
		"Forecast":123,
		"State":"String",
		"Zip":"String",
		"additionalInfos":[
			{
				"Key":"String",
				"Value":"String"
			}
		]
	}
}

The following is an example response Xml body:
<DatasourceResponse xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages.AppSpaceIntegration.v1.Datasource" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <DebugMessage xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages">String</DebugMessage>
  <Errors xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages">
    <Error>
      <Code>String</Code>
      <Message>String</Message>
      <StackTrace>String</StackTrace>
    </Error>
  </Errors>
  <Status xmlns="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Messages">Success</Status>
  <WeatherSubscription xmlns:a="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Model.DTO.AppSpaceIntegration.v1.DataSources.Weather">
    <a:City>String</a:City>
    <a:Country>String</a:Country>
    <a:Forecast>123</a:Forecast>
    <a:Id>123</a:Id>
    <a:State>String</a:State>
    <a:WeatherDataSourceId>123</a:WeatherDataSourceId>
    <a:Zip>String</a:Zip>
    <a:additionalInfos xmlns:b="http://schemas.datacontract.org/2004/07/Nexus.AppSpace.Service.Contract.Model.DTO">
      <b:KeyValuePair>
        <b:Key>String</b:Key>
        <b:Value>String</b:Value>
      </b:KeyValuePair>
    </a:additionalInfos>
  </WeatherSubscription>
</DatasourceResponse>

The following is an example response Json body:
{
	"DebugMessage":"String",
	"Errors":[
		{
			"Code":"String",
			"Message":"String",
			"StackTrace":"String"
		}
	],
	"Status":1,
	"WeatherSubscription":{
		"City":"String",
		"Country":"String",
		"Forecast":123,
		"Id":123,
		"State":"String",
		"WeatherDataSourceId":123,
		"Zip":"String",
		"additionalInfos":[
			{
				"Key":"String",
				"Value":"String"
			}
		]
	}
}