Skip to main content
POST
/
applications
/
{applicationId}
/
information-requests
/
{informationRequestId}
/
respond
Respond to an information request item
curl --request POST \
  --url https://api.equalsmoney.com/v2/applications/{applicationId}/information-requests/{informationRequestId}/respond \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "code": "PROOF_OF_ADDRESS",
  "response": "We process approximately 500 transactions per month."
}
'
{
  "code": "string",
  "response": "We process approximately 500 transactions per month.",
  "createdAt": "2019-08-24T14:15:22Z",
  "id": "e9293471-5eb3-4dbc-916c-dbaf9e2deefd",
  "informationRequestId": "e9293471-5eb3-4dbc-916c-dbaf9e2deefd"
}

Authorizations

Authorization
string
header
required

Path Parameters

applicationId
string<uuid>
required

The ID of the application to work with.

Maximum string length: 36
Example:

"e9293471-5eb3-4dbc-916c-dbaf9e2deefd"

informationRequestId
string<uuid>
required

The ID of the information request to respond to.

Example:

"e9293471-5eb3-4dbc-916c-dbaf9e2deefd"

Body

application/json

Body

code
string
required

The code identifying which required information item to respond to.

Required string length: 1 - 100
Example:

"PROOF_OF_ADDRESS"

response
string
required

The response value. Format is validated server-side according to the expected response type.

Required string length: 1 - 1000
Example:

"We process approximately 500 transactions per month."

Response

200 - application/json

OK

code
string
required

The code of the information item that was responded to.

response
string
required

The response value. Format is validated server-side according to the expected response type.

Required string length: 1 - 1000
Example:

"We process approximately 500 transactions per month."

createdAt
string<date-time>
required

The date the Resource was initially created. ISO 8601 format without milliseconds.

id
string<uuid>
required

The ID of the information request response.

Example:

"e9293471-5eb3-4dbc-916c-dbaf9e2deefd"

informationRequestId
string<uuid>
required

The ID of the information request to respond to.

Example:

"e9293471-5eb3-4dbc-916c-dbaf9e2deefd"