POST api/salesforce/authorizeEDP
Request Information
URI Parameters
None.
Body Parameters
RequestConfirmEDPSF| Name | Description | Type | Additional information |
|---|---|---|---|
| apikey | string |
Required |
|
| idSalesForce | string |
Required |
|
| state | integer |
Required Range: inclusive between 1 and 2 |
|
| reason | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"apikey": "sample string 1",
"idSalesForce": "sample string 2",
"state": 1,
"reason": "sample string 3"
}
application/xml, text/xml
Sample:
<RequestConfirmEDPSF xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Integraciones.Models.SalesForce.Request"> <apikey>sample string 1</apikey> <idSalesForce>sample string 2</idSalesForce> <reason>sample string 3</reason> <state>1</state> </RequestConfirmEDPSF>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| code | string |
None. |
|
| message | string |
None. |
|
| data | string |
None. |
|
| error | Collection of Error |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": "sample string 1",
"message": "sample string 2",
"data": "sample string 3",
"error": [
{
"code": "sample string 1",
"message": "sample string 2",
"stack_trace": "sample string 3"
},
{
"code": "sample string 1",
"message": "sample string 2",
"stack_trace": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Integraciones.Models">
<code>sample string 1</code>
<data>sample string 3</data>
<error>
<Error>
<code>sample string 1</code>
<message>sample string 2</message>
<stack_trace>sample string 3</stack_trace>
</Error>
<Error>
<code>sample string 1</code>
<message>sample string 2</message>
<stack_trace>sample string 3</stack_trace>
</Error>
</error>
<message>sample string 2</message>
</Response>