Skip to content

Mifundo Consumer API 1.0 (1.0)

Mifundo Consumer API.

Download OpenAPI description
Languages
Servers
Mock server
https://doc.mifundo.com/_mock/mca
Production API
https://api.mifundo.com/mca
Test API
https://apitest.mifundo.com/mca
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations

Sessions

Session is a collection of inputs for retrieving various sets of information

Operations

SourceFiles

Original responses from credit bureaus and other sources of information

Operations

Request

Security
keycloakAuthLive or keycloakAuthTest
Path
sessionIdstring(uuid)required
curl -i -X GET \
  'https://doc.mifundo.com/_mock/mca/v1/sessions/{sessionId}/source-files' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

OK

Bodyapplication/jsonArray [
sourceIdnull or string

Identifier of the source system or provider from which the file was obtained.

typenull or string

Type or category of the file (e.g., PDF, XML, CSV).

namenull or string

Name of the file, typically used for display or download purposes.

sizeInBytesnull or integer(int64)

Size of the file in bytes.

idstring(uuid)

Unique identifier of the source file.

]
Response
application/json
[ { "sourceId": null, "type": null, "name": null, "sizeInBytes": null, "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08" } ]

Request

Security
keycloakAuthLive or keycloakAuthTest
Path
sessionIdstring(uuid)required
sourceFileIdstring(uuid)required
curl -i -X GET \
  'https://doc.mifundo.com/_mock/mca/v1/sessions/{sessionId}/source-files/{sourceFileId}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

OK

Bodyapplication/json
sourceIdnull or string

Identifier of the source system or provider from which the file was obtained.

typenull or string

Type or category of the file (e.g., PDF, XML, CSV).

namenull or string

Name of the file, typically used for display or download purposes.

sizeInBytesnull or integer(int64)

Size of the file in bytes.

idstring(uuid)

Unique identifier of the source file.

Response
application/json
{ "sourceId": null, "type": null, "name": null, "sizeInBytes": null, "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08" }

Request

Security
keycloakAuthLive or keycloakAuthTest
Path
sessionIdstring(uuid)required
sourceFileIdstring(uuid)required
curl -i -X GET \
  'https://doc.mifundo.com/_mock/mca/v1/sessions/{sessionId}/source-files/{sourceFileId}/content' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

OK

Bodyapplication/json
sourceIdnull or string

Identifier of the source system or provider from which the file was obtained.

typenull or string

Type or category of the file (e.g., PDF, XML, CSV).

namenull or string

Name of the file, typically used for display or download purposes.

sizeInBytesnull or integer(int64)

Size of the file in bytes.

contentBase64null or string(byte)required

Base64-encoded binary content of the file.

Response
application/json
{ "sourceId": null, "type": null, "name": null, "sizeInBytes": null, "contentBase64": null }
Operations