Mono Colombia

Find successful outgoing transfer

Find an outgoing transfer by external_id.

GET
/api/v1/outgoing_transfers/find_successful_by
AuthorizationBearer <token>

In: header

Scope: outgoing_transfers:readonly

Query Parameters

external_idstring

Filter by external_id field

Example"00001"

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://breb-participant.cert.monoban.co/api/v1/outgoing_transfers/find_successful_by?external_id=00001"
{
  "amount": {
    "amount": 100000000,
    "currency": "COP"
  },
  "description": "Payment to merchant",
  "external_id": "transfer_001",
  "id": "bbot_5tgliBmzjZ6mpQPRbQjfKj",
  "inserted_at": "2022-01-01T01:00:00Z",
  "payment_id": "PAY123456789",
  "resolution_request_id": "bbtgr_5tgliBmzjZ6mpQPRbQjfKj",
  "state": "created",
  "state_reason": null,
  "timemarks": {
    "T110": "2024-09-29T15:30:00.000",
    "T120": "2024-09-29T15:30:00.000"
  },
  "updated_at": "2022-01-01T01:00:00Z",
  "expected_creditor": {
    "document_number": "1234567890",
    "document_type": "CC"
  },
  "query": {
    "format": "plain_key",
    "value": "1234567890"
  },
  "target": {
    "creditor": {
      "document_number": "1234567890",
      "document_type": "CC",
      "full_name": "Juan Pérez",
      "type": "natural"
    },
    "creditor_account": {
      "currency_code": "COP",
      "number": "1234567890",
      "type": "savings_account"
    },
    "id": "bbtgt_5tgliBmzjZ6mpQPRbQjfKj",
    "key_type": "identification",
    "key_value": "1234567890",
    "participant_nit": "900123456",
    "payment_id": "string",
    "resolution_type": "plain_key",
    "spbvi": "CRB",
    "transaction_amount": {
      "amount": 100000000,
      "currency": "COP"
    }
  }
}
{
  "code": "400 Bad Request",
  "errors": [
    {
      "error_code": "outgoing_transfer_bad_state",
      "message": "The outgoing transfer has not completed successfully yet",
      "path": null,
      "url": null
    }
  ],
  "id": "log_7MkWaFqvfosB8fzHhb1Eql",
  "message": "Malformed request"
}
{
  "code": "401 Unauthorized",
  "errors": [
    {
      "error_code": "missing_authorization_header",
      "message": "`Authorization` header is missing.",
      "path": null,
      "url": null
    }
  ],
  "id": "log_7MkWaFqvfosB8fzHhb1Eql",
  "message": "Authorization header is missing or invalid."
}
{
  "code": "403 Forbidden",
  "errors": [
    {
      "error_code": "not_authorized",
      "message": "Not authorized to have access to this resource.",
      "path": null,
      "url": null
    }
  ],
  "id": "log_7MkWaFqvfosB8fzHhb1Eql",
  "message": "Not authorized to have access to this resource"
}
{
  "code": "404 Not Found",
  "errors": [
    {
      "error_code": "outgoing_transfer_not_found",
      "message": "The outgoing transfer doesn't exist",
      "path": null,
      "url": null
    }
  ],
  "id": "log_7MkWaFqvfosB8fzHhb1Eql",
  "message": "Resource not defined"
}
{
  "code": "500 Internal Server Error",
  "errors": [
    {
      "error_code": "internal_error",
      "message": "An unexpected error occurred",
      "path": null,
      "url": null
    }
  ],
  "id": "log_7MkWaFqvfosB8fzHhb1Eql",
  "message": "Something went wrong on the Server"
}