Download OpenAPI specification:Download
Creates a credit record and assigns to the customer with the person_id
specified in the request URL. You can specify the source
of the credit record file as either partner
or solarisBank
. If the source
is set to partner
, you must collect the credit record yourself from a credit bureau and add the credit record file content Base64-encoded in the payload.
The credit record attributes
CreditRecord
Bad Request
Forbidden
Not Found
Internal server error
Gateway Timeout
{- "source": "solarisBank",
- "file": "string"
}
{- "status": "available",
- "person_id": "dc1a6812a14f6cc338cd084208535bcdcper",
- "id": "fbb7d15fa4c54ba0b077592665ef04a4ccrd",
- "created_at": "2020-20-03T18:01:48.000Z"
}
Creates a credit record and assigns to the freelancer with the person_id
specified in the request URL. You can specify the source
of the credit record file as either partner
or solarisBank
. If the source
is set to partner
, you must collect the credit record yourself from a credit bureau and add the credit record file content Base64-encoded in the payload.
The credit record attributes
CreditRecord
Bad Request
Forbidden
Not Found
Internal server error
Gateway Timeout
{- "source": "solarisBank",
- "file": "string"
}
{- "status": "available",
- "person_id": "dc1a6812a14f6cc338cd084208535bcdcper",
- "id": "fbb7d15fa4c54ba0b077592665ef04a4ccrd",
- "created_at": "2020-20-03T18:01:48.000Z"
}
Returns the information about a customer's existing credit record, including the status and validity of the credit record. Add the customer's person_id
and the credit_record_id
in the request URL. If the status
of a credit record is expired
, you must create a new credit record for the customer.
Credit Record
Not Found
curl -i -X GET \ 'https://api.solaris-sandbox.de/v1/persons/{person_id}/credit_records/{credit_record_id}'
{- "status": "available",
- "person_id": "dc1a6812a14f6cc338cd084208535bcdcper",
- "id": "fbb7d15fa4c54ba0b077592665ef04a4ccrd",
- "created_at": "2020-20-03T18:01:48.000Z"
}