ittybittyapps/appstoreconnect-cli

Get a Provisioning Profile by UUID

orj opened this issue ยท 1 comments

orj commented

๐Ÿ—ฃ Context

When fetching specific profiles.

๐Ÿ’ฌ Narrative

As a user
I want to be able to fetch a provisioning profile by uuid
So that I can download a single profile

๐Ÿ“ Notes

If I know the UUID of a provisioning profile I think it would be useful to be able to download just that single profile.

๐ŸŽจ Design

asc profiles read [--api-issuer <uuid>] [--api-key-id <keyid>] [--csv] [--json] [--table] [--yaml] [--download-path <path>] <uuid>

โœ… Acceptance Criteria

GIVEN there is a provisioning profile with the specified uuid
WHEN I request that profile
THEN The profile information is displayed

GIVEN there is a provisioning profile with the specified uuid
WHEN I request that profile and I specify a valid --download-path
THEN The profile is saved to the specified <path>

orj commented

This was not actually possible with just the filtering options provided by the API. So instead @DechengMa implemented filtering by resource ID in #216. That will have to do for now.