Create new signing keys
POST/v1/organizations/:organizationId/projects/:projectId/platforms/android/signing-keys
Create new signing keys
Request
Path Parameters
organizationId stringrequired
The ID of the organization
projectId stringrequired
The ID of the project
Responses
- 201
- application/json
- Schema
- Example (from schema)
Schema
id stringrequired
The unique identifier of the signing keys.
publicKey stringrequired
The public key in PEM format.
privateKey stringrequired
The private key in PEM format.
publicKeySingleLine stringrequired
The single-line version of the public key without the BEGIN and END lines.
privateKeySingleLine stringrequired
The single-line version of the private key without the BEGIN and END lines.
createdAt date-timerequired
The timestamp indicating when the signing keys were created.
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"publicKey": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA...\n-----END PUBLIC KEY-----",
"privateKey": "-----BEGIN PRIVATE KEY-----\nMIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQD...\n-----END PRIVATE KEY-----",
"publicKeySingleLine": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA...",
"privateKeySingleLine": "MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQD...",
"createdAt": "2023-06-08T12:34:56.789Z"
}
Loading...