v1
latestOpenAPI 3.0.12026-07-243407211.3 MBCreate a new customer profile in the Green Dot system.
This API creates a customer profile. Afterwards, the customer must go through Green Dot's verification process before initiating any further API calls.
Business Logic
CustomerToken -- Depending on the partner configuration, this field can be mandatory or optional.
- When this field is mandatory, the partner must provide a unique value.
- When this field is mandatory, the partner must provide a unique value.
- When this field is optional and the request contains a CustomerToken value, the same value is used. Otherwise, the Instant Transfer Service generates a GUID as the CustomerToken.
Idempotent Check -- This check is based on the CustomerToken. If the request contains a value that already exists in the database, it returns the Record already exists error.
DB Level Encryption -- This encryption is based on DateOfBirth.
CustomerID in DB -- As per Green Dot standards, the CustomerID is a GUID that the the Instant Transfer service generates.
Path parameters
Program code assigned to the partner.
Headers
Unique request identifier (GUID).
Type of customer (default: External).
Request body
Example request
{
"salt": "eb6c967d-765a-4b18-9a6e-d4eb4df69efa",
"customerToken": "eb6c967d-765a-4b18-9a6e-d4eb4df69efa"
}Response
Customer profile created successfully.
Example response
{
"customerToken": "eb6c967d-765a-4b18-9a6e-d4eb4df69efa",
"status": "Pending"
}