GET api-v1/commerce/orderschema/users
Returns an array containing the email address of all users who can access an order schema, and the IDs of the order schemas they can access
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
An array containing the email address of all users who can access an order schema, and the IDs of the order schemas they can access
Collection of UserResponseName | Description | Type | Additional information |
---|---|---|---|
string |
None. |
||
OrderSchemaIds | Collection of integer |
None. |
Response Formats
application/json,text/json
Sample:
[ { "Email": "sample string 1", "OrderSchemaIds": [ 1, 2 ] }, { "Email": "sample string 1", "OrderSchemaIds": [ 1, 2 ] } ]
application/xml,text/xml
Sample:
<ArrayOfUserResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/labPortal.Api.Export"> <UserResponse> <Email>sample string 1</Email> <OrderSchemaIds xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:int>1</d3p1:int> <d3p1:int>2</d3p1:int> </OrderSchemaIds> </UserResponse> <UserResponse> <Email>sample string 1</Email> <OrderSchemaIds xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:int>1</d3p1:int> <d3p1:int>2</d3p1:int> </OrderSchemaIds> </UserResponse> </ArrayOfUserResponse>