POST api/BillingService/UpdateResellerDealJsonData
Documentation for 'UpdateResellerDealJsonData'.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
request | Documentation for 'request'. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "deal_unique_id": 1, "reseller_uuid": "sample string 2", "reseller_content_server_name": "sample string 3", "company_deal_id": 4, "status": 0, "data_json": "sample string 5", "create_utc_time": "sample string 6", "last_modify_utc_time": "sample string 7" }
application/xml, text/xml
Sample:
<ResellerDealRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MMS.RestApi.Entities.Billing"> <company_deal_id>4</company_deal_id> <create_utc_time>sample string 6</create_utc_time> <data_json>sample string 5</data_json> <deal_unique_id>1</deal_unique_id> <last_modify_utc_time>sample string 7</last_modify_utc_time> <reseller_content_server_name>sample string 3</reseller_content_server_name> <reseller_uuid>sample string 2</reseller_uuid> <status>None</status> </ResellerDealRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json
Sample:
{ "is_success": true, "error_message": "sample string 2", "exception_name": "sample string 3", "error_code": 4 }
application/xml, text/xml
Sample:
<Void xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MMS.RestApi.Entities.NewAPI"> <error_code xmlns="http://schemas.datacontract.org/2004/07/Mandoe.Framework.WebApi">4</error_code> <error_message xmlns="http://schemas.datacontract.org/2004/07/Mandoe.Framework.WebApi">sample string 2</error_message> <exception_name xmlns="http://schemas.datacontract.org/2004/07/Mandoe.Framework.WebApi">sample string 3</exception_name> <is_success xmlns="http://schemas.datacontract.org/2004/07/Mandoe.Framework.WebApi">true</is_success> </Void>