API Reference
Apple Identity Access CSRs
Create an Apple Identity Access certificate signing request
POST
/v2/presentations/certificates/apple-identity-access-certificatesAuthorization
bearerAuth AuthorizationBearer <token>
In: header
Request Body
application/json
Apple Identity Access CSR payload
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
curl -X POST "https://example.com/v2/presentations/certificates/apple-identity-access-certificates" \ -H "Content-Type: application/json" \ -d '{ "teamId": "string", "merchantId": "string" }'{ "id": "string", "teamId": "string", "merchantId": "string", "csrPem": "string"}Retrieve all Apple Identity Access certificate signing requests
GET
/v2/presentations/certificates/apple-identity-access-certificatesAuthorization
bearerAuth AuthorizationBearer <token>
In: header
Response Body
application/json
curl -X GET "https://example.com/v2/presentations/certificates/apple-identity-access-certificates"{ "nextCursor": "string", "data": [ { "id": "string", "teamId": "string", "merchantId": "string", "csrPem": "string" } ]}Retrieve an Apple Identity Access certificate signing request
GET
/v2/presentations/certificates/apple-identity-access-certificates/{certificateId}Authorization
bearerAuth AuthorizationBearer <token>
In: header
Path Parameters
certificateId*string
Unique identifier for the Apple Identity Access CSR.
Format
uuidResponse Body
application/json
application/json
application/json
curl -X GET "https://example.com/v2/presentations/certificates/apple-identity-access-certificates/497f6eca-6276-4993-bfeb-53cbbbba6f08"{ "id": "string", "teamId": "string", "merchantId": "string", "csrPem": "string"}Delete an Apple Identity Access certificate signing request
DELETE
/v2/presentations/certificates/apple-identity-access-certificates/{certificateId}Authorization
bearerAuth AuthorizationBearer <token>
In: header
Path Parameters
certificateId*string
Unique identifier for the Apple Identity Access CSR.
Format
uuidResponse Body
application/json
application/json
curl -X DELETE "https://example.com/v2/presentations/certificates/apple-identity-access-certificates/497f6eca-6276-4993-bfeb-53cbbbba6f08"Empty
How would you rate this page?
Last updated on