POST
/
public
/
v1
/
submit
/
update_fiat_on_ramp_credential
Authorizations
Body
Enum options:
ACTIVITY_TYPE_UPDATE_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
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 updateFiatOnRampCredentialIntent object
Show updateFiatOnRampCredentialIntent details
Show updateFiatOnRampCredentialIntent details
The ID of the fiat on-ramp credential to update
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
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/update_fiat_on_ramp_credential \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--data '{
"type": "ACTIVITY_TYPE_UPDATE_FIAT_ON_RAMP_CREDENTIAL",
"timestampMs": "<string> (e.g. 1746736509954)",
"organizationId": "<string> (Your Organization ID)",
"parameters": {
"fiatOnrampCredentialId": "<string>",
"onrampProvider": "<FIAT_ON_RAMP_PROVIDER_COINBASE>",
"projectId": "<string>",
"publishableApiKey": "<string>",
"encryptedSecretApiKey": "<string>",
"encryptedPrivateApiKey": "<string>"
}
}'
Copy
Ask AI
{
"activity": {
"id": "<activity-id>",
"status": "ACTIVITY_STATUS_COMPLETED",
"type": "ACTIVITY_TYPE_UPDATE_FIAT_ON_RAMP_CREDENTIAL",
"organizationId": "<organization-id>",
"timestampMs": "<timestamp> (e.g. 1746736509954)",
"result": {
"activity": {
"id": "<string>",
"organizationId": "<string>",
"status": "<string>",
"type": "<string>",
"intent": {
"updateFiatOnRampCredentialIntent": {
"fiatOnrampCredentialId": "<string>",
"onrampProvider": "<FIAT_ON_RAMP_PROVIDER_COINBASE>",
"projectId": "<string>",
"publishableApiKey": "<string>",
"encryptedSecretApiKey": "<string>",
"encryptedPrivateApiKey": "<string>"
}
},
"result": {
"updateFiatOnRampCredentialResult": {
"fiatOnRampCredentialId": "<string>"
}
},
"votes": "<array>",
"fingerprint": "<string>",
"canApprove": "<boolean>",
"canReject": "<boolean>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
}
}
}