POST api/member/WriteImportMember

Request Information

URI Parameters

None.

Body Parameters

AddImportInput
NameDescriptionTypeAdditional information
OrgId

globally unique identifier

None.

FileUrl

string

None.

UserID

integer

None.

IsSuperAdmin

boolean

None.

IsColonyAdmin

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "OrgId": "e00f11fe-c0aa-4c12-947e-225ac9e786ac",
  "FileUrl": "sample string 1",
  "UserID": 1,
  "IsSuperAdmin": true,
  "IsColonyAdmin": true
}

application/xml, text/xml

Sample:
<AddImportInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Siyan.Lianxinqiao.Core.Members.Dto">
  <FileUrl>sample string 1</FileUrl>
  <IsColonyAdmin>true</IsColonyAdmin>
  <IsSuperAdmin>true</IsSuperAdmin>
  <OrgId>e00f11fe-c0aa-4c12-947e-225ac9e786ac</OrgId>
  <UserID>1</UserID>
</AddImportInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.