POST /external/api/v3/panelmember
Create panel member.
Request Information
URI Parameters
None.
Body Parameters
Collection of PanelMember| Name | Description | Type | Additional information | Nullable |
|---|---|---|---|---|
| Id | integer |
None |
False | |
| string |
Required |
False | ||
| Status | PanelMemberStatus |
Required |
False | |
| CreationDate | date |
None |
False | |
| LastModifiedDate | date |
None |
False | |
| LastInvitedDate | date |
None |
True | |
| Data | Collection of CustomerData |
None |
False |
Request Formats
application/json
Sample:
[
{
"Id": 1,
"Email": "sample string 2",
"Status": 0,
"CreationDate": "2025-11-05T20:10:56.4336097+01:00",
"LastModifiedDate": "2025-11-05T20:10:56.4336097+01:00",
"LastInvitedDate": "2025-11-05T20:10:56.4336097+01:00",
"Data": [
{
"CustomerDataColumnId": 1,
"Name": "sample string 2",
"Value": "sample string 3",
"IsEncrypted": true,
"CertificateThumbprint": "sample string 5",
"EncryptionKey": "sample string 6"
},
{
"CustomerDataColumnId": 1,
"Name": "sample string 2",
"Value": "sample string 3",
"IsEncrypted": true,
"CertificateThumbprint": "sample string 5",
"EncryptionKey": "sample string 6"
}
]
},
{
"Id": 1,
"Email": "sample string 2",
"Status": 0,
"CreationDate": "2025-11-05T20:10:56.4336097+01:00",
"LastModifiedDate": "2025-11-05T20:10:56.4336097+01:00",
"LastInvitedDate": "2025-11-05T20:10:56.4336097+01:00",
"Data": [
{
"CustomerDataColumnId": 1,
"Name": "sample string 2",
"Value": "sample string 3",
"IsEncrypted": true,
"CertificateThumbprint": "sample string 5",
"EncryptionKey": "sample string 6"
},
{
"CustomerDataColumnId": 1,
"Name": "sample string 2",
"Value": "sample string 3",
"IsEncrypted": true,
"CertificateThumbprint": "sample string 5",
"EncryptionKey": "sample string 6"
}
]
}
]
application/xml
Sample:
<ArrayOfPanelMember xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Expoints.API.Extern.V3.Models">
<PanelMember>
<CreationDate>2025-11-05T20:10:56.4336097+01:00</CreationDate>
<Data xmlns:d3p1="http://schemas.datacontract.org/2004/07/Expoints.API.Extern.Models">
<d3p1:CustomerData>
<d3p1:CertificateThumbprint>sample string 5</d3p1:CertificateThumbprint>
<d3p1:CustomerDataColumnId>1</d3p1:CustomerDataColumnId>
<d3p1:EncryptionKey>sample string 6</d3p1:EncryptionKey>
<d3p1:IsEncrypted>true</d3p1:IsEncrypted>
<d3p1:Name>sample string 2</d3p1:Name>
<d3p1:Value>sample string 3</d3p1:Value>
</d3p1:CustomerData>
<d3p1:CustomerData>
<d3p1:CertificateThumbprint>sample string 5</d3p1:CertificateThumbprint>
<d3p1:CustomerDataColumnId>1</d3p1:CustomerDataColumnId>
<d3p1:EncryptionKey>sample string 6</d3p1:EncryptionKey>
<d3p1:IsEncrypted>true</d3p1:IsEncrypted>
<d3p1:Name>sample string 2</d3p1:Name>
<d3p1:Value>sample string 3</d3p1:Value>
</d3p1:CustomerData>
</Data>
<Email>sample string 2</Email>
<Id>1</Id>
<LastInvitedDate>2025-11-05T20:10:56.4336097+01:00</LastInvitedDate>
<LastModifiedDate>2025-11-05T20:10:56.4336097+01:00</LastModifiedDate>
<Status>Active</Status>
</PanelMember>
<PanelMember>
<CreationDate>2025-11-05T20:10:56.4336097+01:00</CreationDate>
<Data xmlns:d3p1="http://schemas.datacontract.org/2004/07/Expoints.API.Extern.Models">
<d3p1:CustomerData>
<d3p1:CertificateThumbprint>sample string 5</d3p1:CertificateThumbprint>
<d3p1:CustomerDataColumnId>1</d3p1:CustomerDataColumnId>
<d3p1:EncryptionKey>sample string 6</d3p1:EncryptionKey>
<d3p1:IsEncrypted>true</d3p1:IsEncrypted>
<d3p1:Name>sample string 2</d3p1:Name>
<d3p1:Value>sample string 3</d3p1:Value>
</d3p1:CustomerData>
<d3p1:CustomerData>
<d3p1:CertificateThumbprint>sample string 5</d3p1:CertificateThumbprint>
<d3p1:CustomerDataColumnId>1</d3p1:CustomerDataColumnId>
<d3p1:EncryptionKey>sample string 6</d3p1:EncryptionKey>
<d3p1:IsEncrypted>true</d3p1:IsEncrypted>
<d3p1:Name>sample string 2</d3p1:Name>
<d3p1:Value>sample string 3</d3p1:Value>
</d3p1:CustomerData>
</Data>
<Email>sample string 2</Email>
<Id>1</Id>
<LastInvitedDate>2025-11-05T20:10:56.4336097+01:00</LastInvitedDate>
<LastModifiedDate>2025-11-05T20:10:56.4336097+01:00</LastModifiedDate>
<Status>Active</Status>
</PanelMember>
</ArrayOfPanelMember>
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.
Response Status Codes
| Status Code | Name | Description |
|---|---|---|
| 200 | OK | The request has succeeded. |
| 400 | Bad Request | Fulfilling the request would cause an invalid state. Request needs modification. |
| 401 | Unauthorized | Missing or invalid authentication token. |
| 403 | Forbidden | Server refuses to authorize the request. |
| 408 | Request Timeout | The server timed out waiting for the request. |
| 429 | Too Many Requests | Too many requests in a given amount of time. |
| 500 | Internal Server Error | The server encountered an unexpected condition which prevented it from fulfilling the request. |
| 503 | Service Unavailable | The server is unable to proces the request at the moment, try again later. |