POST eo-members/agreement?ClientId={ClientId}&user_id={user_id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientId | string |
Required |
|
| user_id | globally unique identifier |
Required |
Body Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ByLawAgreement | integer |
None. |
|
| AgreementInitials | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ByLawAgreement": 1,
"AgreementInitials": "sample string 2"
}
application/xml, text/xml
Sample:
<AgreementRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ByLawAgreement>1</ByLawAgreement> <AgreementInitials>sample string 2</AgreementInitials> </AgreementRequest>
Response Information
Resource Description
| Name | Description | Type | Additional information |
|---|---|---|---|
| ByLawAgreement | string |
None. |
|
| AgreementInitials | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ByLawAgreement": "sample string 1",
"AgreementInitials": "sample string 2"
}
application/xml, text/xml
Sample:
<AgreementResult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ByLawAgreement>sample string 1</ByLawAgreement> <AgreementInitials>sample string 2</AgreementInitials> </AgreementResult>