# Retrieve card tracking information Returns tracking information for the card with the ID specified in the request URL. Endpoint: GET /v1/cards/{cardId}/delivery_trackings Version: 1.0 ## Path parameters: - `cardId` (string, required) ID of the card account. Example: "1fe8caa4bf1f49d87b2d63c14bb565f0mcrd" ## Response 200 fields (application/json): - `id` (string) Unique identifier for the card tracking record. - `card_id` (string) ID of the card. - `shipping_provider` (string) The shipping company that shipped the card. - `date_of_shipment` (string) (Conditional field) Contains the date when the card was shipped. If the card hasn't shipped, then this property will be empty. - `shipping_tracking_information` (string) (Conditional field) Contains the tracking code provided by the shipping company. If the card hasn't shipped, or if there was an error with the shipment, then this property will be empty. - `message` (string) (Conditional field) Contains the error message from the provider in case there was a problem. If there was an error, then the property will be empty. - `country_code` (string) (Conditional field) Country ISO Code to represent countries, dependent territories, and special areas of geographical interest. - `has_picture` (boolean) (Conditional field) Flag that shows card has the picture or not. ## Response 400 fields (application/json): - `errors` (array) - `errors.id` (string) - `errors.status` (integer) - `errors.code` (string) - `errors.title` (string) - `errors.detail` (string) - `errors.source` (object) - `errors.source.field` (string) - `errors.source.message` (string) ## Response 401 fields (application/json): - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `status` (string) Example: "401" - `code` (string) Example: "token_required" - `title` (string) - `detail` (string) Example: "Bearer Token is not provided" ## Response 403 fields (application/json): - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `status` (string) Example: "403" - `code` (string) Example: "unauthorized_action" - `title` (string) Example: "Unauthorized Action" - `detail` (string) Example: "Unauthorized action is not allowed." ## Response 500 fields (application/json): - `id` (string) Example: "e8915041-9d8c-4d96-9dd1-04e8522ecdbf" - `status` (string) Example: "500" - `code` (string) Example: "generic_error" - `title` (string) Example: "Generic Error" - `detail` (string) Example: "There was an error."