Saltar al contenido principal

Counter Party

POST /counterparty

Get counterparty information

Petición de ejemplo:

POST /counterparty HTTP/1.1
Host: example.com
Content-Type: application/json

{
"destinatario": "string"
}
  • Status Codes:

    • 200 OK

      Counterparty information

      Ejemplo de respuesta:

      HTTP/1.1 200 OK
      Content-Type: application/json

      {
      "cvu": "string",
      "cbu": "string",
      "tipo": "CA",
      "titulares": "string",
      "entidadBancaria": "string",
      "moneda": "string"
      }
    • 401 Unauthorized

      Unauthorized

      Ejemplo de respuesta:

      HTTP/1.1 401 Unauthorized
      Content-Type: application/json

      {
      "name": "string",
      "message": "string"
      }
    • 404 Not Found

      Account not found

      Ejemplo de respuesta:

      HTTP/1.1 404 Not Found
      Content-Type: application/json

      {
      "name": "string",
      "message": "string",
      "detail": {
      "item": "string"
      }
      }