POST
/
public
/
v1
/
submit
/
create_fiat_on_ramp_credential
Authorizations
Body
Enum options:
ACTIVITY_TYPE_CREATE_FIAT_ON_RAMP_CREDENTIALTimestamp (in milliseconds) of the request, used to verify liveness of user requests.
Unique identifier for a given Organization.
The parameters object containing the specific intent data for this activity.
Show details
Show details
Enum options:
FIAT_ON_RAMP_PROVIDER_COINBASE, FIAT_ON_RAMP_PROVIDER_MOONPAYProject ID for the on-ramp provider. Some providers, like Coinbase, require this additional identifier
Secret API key for the on-ramp provider encrypted to our on-ramp encryption public key
Private API key for the on-ramp provider encrypted to our on-ramp encryption public key. Some providers, like Coinbase, require this additional key.
Response
A successful response returns the following fields:The activity object containing type, intent, and result
Show activity details
Show activity details
The intent of the activity
Show intent details
Show intent details
The createFiatOnRampCredentialIntent object
Show createFiatOnRampCredentialIntent details
Show createFiatOnRampCredentialIntent details
onrampProvider fieldEnum options:
FIAT_ON_RAMP_PROVIDER_COINBASE, FIAT_ON_RAMP_PROVIDER_MOONPAYProject ID for the on-ramp provider. Some providers, like Coinbase, require this additional identifier
Publishable API key for the on-ramp provider
Secret API key for the on-ramp provider encrypted to our on-ramp encryption public key
Private API key for the on-ramp provider encrypted to our on-ramp encryption public key. Some providers, like Coinbase, require this additional key.
The result of the activity
Show result details
Show result details
A list of objects representing a particular User’s approval or rejection of a Consensus request, including all relevant metadata.
Copy
Ask AI
curl --request POST \
--url https://api.turnkey.com/public/v1/submit/create_fiat_on_ramp_credential \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--data '{
"type": "ACTIVITY_TYPE_CREATE_FIAT_ON_RAMP_CREDENTIAL",
"timestampMs": "<string> (e.g. 1746736509954)",
"organizationId": "<string> (Your Organization ID)",
"parameters": {
"onrampProvider": "<FIAT_ON_RAMP_PROVIDER_COINBASE>",
"projectId": "<string>",
"publishableApiKey": "<string>",
"encryptedSecretApiKey": "<string>",
"encryptedPrivateApiKey": "<string>",
"sandboxMode": "<boolean>"
}
}'
Copy
Ask AI
{
"activity": {
"id": "<activity-id>",
"status": "ACTIVITY_STATUS_COMPLETED",
"type": "ACTIVITY_TYPE_CREATE_FIAT_ON_RAMP_CREDENTIAL",
"organizationId": "<organization-id>",
"timestampMs": "<timestamp> (e.g. 1746736509954)",
"result": {
"activity": {
"id": "<string>",
"organizationId": "<string>",
"status": "<string>",
"type": "<string>",
"intent": {
"createFiatOnRampCredentialIntent": {
"onrampProvider": "<FIAT_ON_RAMP_PROVIDER_COINBASE>",
"projectId": "<string>",
"publishableApiKey": "<string>",
"encryptedSecretApiKey": "<string>",
"encryptedPrivateApiKey": "<string>",
"sandboxMode": "<boolean>"
}
},
"result": {
"createFiatOnRampCredentialResult": {
"fiatOnRampCredentialId": "<string>"
}
},
"votes": "<array>",
"fingerprint": "<string>",
"canApprove": "<boolean>",
"canReject": "<boolean>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
}
}
}