POST api/SubSystem/GetOrgSelectItem

Request Information

URI Parameters

None.

Body Parameters

EntSysOrganization
NameDescriptionTypeAdditional information
Id

integer

None.

OrganizationCode

string

None.

OrganizationName

string

None.

Address

string

None.

PhoneNo

string

None.

Email

string

None.

Contacts

string

None.

UnifiedSocialCreditcode

string

None.

CreateBy

string

None.

CreateTime

date

None.

UpdateBy

string

None.

UpdateTime

date

None.

Status

integer

None.

UserCount

integer

None.

RoleId

string

None.

PageSize

integer

None.

PageIndex

integer

None.

TotalCount

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "organizationCode": "sample string 2",
  "organizationName": "sample string 3",
  "address": "sample string 4",
  "phoneNo": "sample string 5",
  "email": "sample string 6",
  "contacts": "sample string 7",
  "unifiedSocialCreditcode": "sample string 8",
  "createBy": "sample string 9",
  "createTime": "2024-10-19 03:58:07",
  "updateBy": "sample string 11",
  "updateTime": "2024-10-19 03:58:07",
  "status": 12,
  "userCount": 13,
  "roleId": "sample string 14",
  "pageSize": 15,
  "pageIndex": 16,
  "totalCount": 17
}

application/xml, text/xml

Sample:
<EntSysOrganization xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model">
  <PageIndex>16</PageIndex>
  <PageSize>15</PageSize>
  <TotalCount>17</TotalCount>
  <Address>sample string 4</Address>
  <Contacts>sample string 7</Contacts>
  <CreateBy>sample string 9</CreateBy>
  <CreateTime>2024-10-19T03:58:07.3263868+08:00</CreateTime>
  <Email>sample string 6</Email>
  <Id>1</Id>
  <OrganizationCode>sample string 2</OrganizationCode>
  <OrganizationName>sample string 3</OrganizationName>
  <PhoneNo>sample string 5</PhoneNo>
  <RoleId>sample string 14</RoleId>
  <Status>12</Status>
  <UnifiedSocialCreditcode>sample string 8</UnifiedSocialCreditcode>
  <UpdateBy>sample string 11</UpdateBy>
  <UpdateTime>2024-10-19T03:58:07.3263868+08:00</UpdateTime>
  <UserCount>13</UserCount>
</EntSysOrganization>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ReturnResultOfListOfSelectItem
NameDescriptionTypeAdditional information
Status

integer

None.

Success

boolean

None.

Data

Collection of SelectItem

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "status": 1,
  "success": true,
  "data": [
    {
      "label": "sample string 1",
      "value": {},
      "parentValue": {},
      "isSelected": true
    },
    {
      "label": "sample string 1",
      "value": {},
      "parentValue": {},
      "isSelected": true
    }
  ],
  "message": "sample string 3"
}

application/xml, text/xml

Sample:
<ReturnResultOfArrayOfSelectItemXT0r93n9 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models.Dto">
    <d2p1:SelectItem>
      <d2p1:IsSelected>true</d2p1:IsSelected>
      <d2p1:Label>sample string 1</d2p1:Label>
      <d2p1:ParentValue />
      <d2p1:Value />
    </d2p1:SelectItem>
    <d2p1:SelectItem>
      <d2p1:IsSelected>true</d2p1:IsSelected>
      <d2p1:Label>sample string 1</d2p1:Label>
      <d2p1:ParentValue />
      <d2p1:Value />
    </d2p1:SelectItem>
  </Data>
  <Message>sample string 3</Message>
  <Status>1</Status>
  <Success>true</Success>
</ReturnResultOfArrayOfSelectItemXT0r93n9>