POST api/Services/ActiveInActiveMemberType
Request Information
URI Parameters
None.
Body Parameters
Tbl_MemberTypeMasterName | Description | Type | Additional information |
---|---|---|---|
MemberTypeId | integer |
None. |
|
StoreId | integer |
None. |
|
MemberTypeName | string |
None. |
|
IsActive | boolean |
None. |
|
CreatedBy | integer |
None. |
|
CreatedDate | date |
None. |
|
UpdatedBy | integer |
None. |
|
UpdatedDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{ "MemberTypeId": 1, "StoreId": 2, "MemberTypeName": "sample string 3", "IsActive": true, "CreatedBy": 5, "CreatedDate": "2024-12-23T04:07:51.0962293+05:30", "UpdatedBy": 7, "UpdatedDate": "2024-12-23T04:07:51.0962293+05:30" }
text/html, multipart/form-data
Sample:
{"MemberTypeId":1,"StoreId":2,"MemberTypeName":"sample string 3","IsActive":true,"CreatedBy":5,"CreatedDate":"2024-12-23T04:07:51.0962293+05:30","UpdatedBy":7,"UpdatedDate":"2024-12-23T04:07:51.0962293+05:30"}
application/xml, text/xml
Sample:
<Tbl_MemberTypeMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataBase"> <CreatedBy>5</CreatedBy> <CreatedDate>2024-12-23T04:07:51.0962293+05:30</CreatedDate> <IsActive>true</IsActive> <MemberTypeId>1</MemberTypeId> <MemberTypeName>sample string 3</MemberTypeName> <StoreId>2</StoreId> <UpdatedBy>7</UpdatedBy> <UpdatedDate>2024-12-23T04:07:51.0962293+05:30</UpdatedDate> </Tbl_MemberTypeMaster>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponceName | Description | Type | Additional information |
---|---|---|---|
Status | string |
None. |
|
Message | string |
None. |
|
Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{ "Status": "sample string 1", "Message": "sample string 2", "Data": {} }
text/html, multipart/form-data
Sample:
{"Status":"sample string 1","Message":"sample string 2","Data":{}}
application/xml, text/xml
Sample:
<APIResponce xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Controllers"> <Data /> <Message>sample string 2</Message> <Status>sample string 1</Status> </APIResponce>