How to send an iPod to get refurbished?

I dropped my iPod touch 4th generation flat on the pavement.
The screen is completely shattered and I want to send it back to Apple to get it refurbished.
I have a 1 year warrrenty on it as well. How do I send it in?

See:
Apple - Support - iPod - Service FAQ
A broken screen s not covered by the warranty since it is not a defect, you broke it..
Sometimes, if you make an appointment at the Genius Bar of an Apple store the Genius might excahnge it at not cots.  Otherwise you will have to pay $99, $149 or $199 depending upon the capacity.  Apple does not fix yours, they excahnge it for a refurboshed on.

Similar Messages

  • Where do I send my ipod to get fix when the screen is cracked?

    where do i send my ipod to get fis when the screen cracked?

    Apple will exchange your iPod for a refurbished one for this price. They do not fix yours.
    Apple - iPod Repair price     
    You can do it an an Apple store
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar
    To send it to Apple see:
    Apple - Support - Service Answer Center
    A third-party place like the following maybe less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Replace the screen yourself if you are up to it
    iPod Touch Repair – iFixit                  

  • How to send a request and get a response through xml

    How to send a request and get a response through xml files?

    This is the code that works for me. Hope you find it useful.
         public static String sendHttpGetRequest(String endpoint, String requestParameters){
              String result = null;
              // Send a GET request to the servlet
              try{
                   // Send data
                   String urlStr = endpoint;
                   if (requestParameters != null && requestParameters.length () > 0){
                        urlStr += "?" + requestParameters;
                   URL url = new URL(urlStr);
                   HttpURLConnection conn = (HttpURLConnection) url.openConnection();
                   conn.setRequestProperty("Accept", "application/xml");
                   // Get the response
                   BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
                   StringBuffer sb = new StringBuffer();
                   String line;
                   while ((line = rd.readLine()) != null){
                        sb.append(line);
                   rd.close();
                   result = sb.toString();
              } catch (Exception e){
                   e.printStackTrace();
              return result;
         }

  • HT1349 How to send my iPod touch applications to my iPad 2

    How to send my iPod touch application to my iPad 2

    Download the app again in the Purchased tab of the app store on the iPad. You can download the apps again for free as long as you use the same Apple ID.
    If the apps are in your iTunes library on your computer - Sync with iTunes.
    Connect the iPad to the computer and launch iTunes.
    Click on the iPad name on the left side under devices.
    Click on the Apps Tab on the right.
    Click on all of the apps that you want to sync..
    Click on the Sync Apps Heading.
    Click on Apply or sync in the lower right corner of iTunes
    You can also restore the iPad from a backup of the iPod Touch and then sync the iPad with iTunes and the iPad will be identical to the iPod Touch with regard to content.

  • Where do i send my ipod to get a new one?

    my warranty is going to expire august 2006 where do i send my ipod to get it fixed (the apple logo wont go away)
    email me at [email protected]

    http://depot.info.apple.com/ipod

  • How come sometimes my iPod Touch gets stuck updating an app and then just deletes it?

    How come sometimes my iPod Touch gets stuck updating an app and then just deletes it instead?
    The update bar on the app gets stuck on empty and then the next time I sync the app gets deleted.
    It is really annoying to lose all my data when updating an app, and it has happend more than once!
    Any idea why it does this? I am scared to update my favorite apps for fear that they could be deleted.
    -Sam

    I never had an app being deleted.  You can always udate the app on the computer and then sync.

  • Where do i send my ipod to get fixed

    I need to send my ipod in to get fixed how and where can i do this

    Depends on whether or not you want to send it to Apple to be repaired/replaced or a third party service center.
    http://www.apple.com/support/service/depot/ipod/verify/
    B-rock

  • How and where do I send my ipod to get it fixed?

    How do you send it? DO you have to call an apple store or make an appointment? Help

    You can bring it to an Apple store or send it to Apple. See:
    Apple - Support - iPod - Service FAQ
    If you bring it to an Apple store make an appointment at the Genius Bar of an Apple store to avoid waiting
    Apple Retail Store - Genius Bar

  • How to send my ipod in

    How can i mail it and how much does it cost

    assuming that you want the iPod fixed, it probably would be easiest to make an appointment at your local Apple Store's Genius Bar. from there, Apple technicians can diagnose the problems and usually fix it within a few days, without having to send it somewhere else. it shouldn't cost you anything if you are still under warranty.
    if you don't have an Apple Store near by, you can call up AppleCare (1-800-APL-CARE) and they can, over the phone, diagnose the problem and offer solutions, which may include sending it in. this shouldn't cost you anything if you are still under warranty.
    the best option in this case is to go to the Apple Store.
    good luck!
    -MacDarling55
    p.s. here is the link for the Genius Bar reservations: http://www.apple.com/retail/geniusbar/

  • Where do i send my ipod to get repaired

    I broke my ipod and i want to mail it in to get repaired. where do i send it?
    Thanks

    Follow the instrctions here:
    http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=ipod
    You can also go to an Apple store.
    Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar                          

  • How to send a file without getting Connection Refused??

    Hello everyone!
    I'm developing a FTP (Client and Server) program as a project and I have 2 main problems:
    1. The program can't connect to computers with router (Connection Refused error)
    2. If a computer with router connects to me, the program will not transfer the file (Connection Refused error again). but if it does, my friend's internet is suddenly disconnect after one transfer
    what should i do?!? : //
    everything is working well on one computer, but when i'm trying to work on 2 computers its screwed
    ***FOR EVERY TRANSFER I OPEN A DIFFERENT SOCKET AND CLOSE IT (AND ALL THE OTHER STREAMS) IN CASE OF EXCEPTION OR COMPLETION
    Thanks!!

    cotton.m wrote:
    Oron wrote:
    lol
    sorry..just want you to notice
    so how the other ftp programs transfer files? : //
    i have a test up against 2 testers and my program will not transfer files between 2 computers : ///Are these two computers on the same network? Aka behind the same router? If so then there is another problem, which is either a bug in your program and/or a firewall on one or both of the computers.
    How does FTP work normally? Well in most cases you are talking to a server that is on the internet. This server has been configured to be behind or on a network where the routers are not blocking requests to connect to FTP ports (among other services). So nothing different other than it is configured correctly.
    I do suspect your program may have some bugs as well. For example when you talk about it dropping the connection after one transfer. That doesn't sound too great.when i checked the program...no
    in the test...yes
    so the server has no blocking ports, but what about a client with a router?..how do the programs pass the client blocking?
    when i checked the program with a friend (i have a modem and i was the server) all the data was perfectly transfered (moving among folders, deleting files, creation of folders-->all these actions on the server..sending codes, strings and stuff), but when i tried to transfer a file it did connection refused :S
    i can bring a link to the file that do the transfer and if you have patience to read

  • How to make an ipod classic get off the apple boot logo when the menu an center button still don't work

    i tryed to connect my ipod classic to my computer an every time i do it will start flikering an when i conected it to a wall plug it just get stuck on the boot logo it had the the red x but i fix that but now its just stuck on the boot logo i need my ipod please tell me what i need to do pleaseeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee eeeeeeeee

    The big Red X is a sign of iPod undertaker coming, so you only have temporary extension and put it in Comatose state.
    Some laptops have only one high power USB 2.0 port, so if it flickers, try the others on your laptop.
    However try the following, (bear with me if you have done all these.)
    Toggle the hold switch, make sure you don't see the red marking.
    Press Menu and Center butoons for about 10 secs till the Apple logo comes ON, then release the buttons.
    If the above solve the frozen Apple Logo, then do a Disk Diagnostics, read this earlier post from tt2.
    https://discussions.apple.com/message/17028567#17028567
    Don't worry if yours is Windows, the process apply to the iPod and not the PC.
    Good Luck

  • How do i send my ipod in to get fixed?

    My ipod touch has a problem... when i put my headphones in the hole to listen to my music, it doesnt work unless i hold it down in the hole... but if i take the headphones out and plug it into my laptop or my mp3 player they work fine, and i also tried to use other headphones but it still didnt work, so it is something in the ipod itself that is broken... i cant figure out how to send my ipod touch in to get fixed.. i need help... someone please help me..? thank you.

    800-275-2273 in the U.S.A. and I think Canada.

  • I bought an Ipod touch online, how much would it be to get the screan fixed?

    I fell off my back and the top corner of my ipod touch was cracked. How much would it coast to get this fixed? Would they even though I bought it online used?

    Apple will exchange your iPod for a refurbished one for this price. They do not fix yours.
    Apple - iPod Repair price                       
    A third-party place like the following maybe less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Replace the screen yourself if you are up to it
    iPod Touch Repair – iFixit

  • Both cameras on my iPod touch generation 4 will not work anymore. Is there a way I can send it back to get it fixed? Thank you ..

    Both cameras (front/back) will not work anymore. I would tap on the camera app, and the camera shutters would stay closed for a while and when it finally opens, it leaves a full blank screen. Is there a way I could send it in and get that repaired?

    GEESAR wrote:
    hi there
    is there anyway i can use the unlimited data i have from my mobile network provider (o2)  on this i pod touch 4 generation the latest model  NO.
    and does the sim from my mobile network o2 be used in the ipod touch4 to use the unlimited minuites i have from my mobile network provider  NO
    if not then how do i use the unlimited data ive been given through my mobile network provider please tell me most kindly  Purchase a mobile WiFi hotspot (Sometimes referred to as a MyFi), or have that service added to your cell phone.
       geeeeesar also how does this ipod touch4  pick up the  wifi free of charge is this possible or do you have to pay for limited data to access internet Your iPod can connect to any unsecured WiFi network that you are currently within range of.  These networks can be found at your local library, some city/county government buildings, doctor's offices, Denny's, IHOP, Starbuck's, Home Depot, Lowes, Best Buy, and other merchants.  Your iPod can connect to any secured WiFi network that you are within range of and that you have the password for. 
    thanks  can i pod touch 4 generation download movies too  please help thank u very much....  Yes.  If your iPod has a WiFi connection and you have an account with a service like NetFlix....

Maybe you are looking for

  • Connecting your Mac to a TV

    OK, I have asked this question many moons ago and it was it my previous questions asked but since Apple moved this forum over I dont seem to have the answers anymore. What i need to know is how to connect my MacBook up to the television without Apple

  • Connection string not in the command line argument.

    Hi, I found myself constantly looking for the debug connection string and to enter it in the "Command line arguments".  I decided to create my Add-On base class from which all my add-ons inherit from. In the constructor of the base Add-On class I det

  • Problems with laptop when charging!

    Hello, I noticed that this might be a common problem with HP model. I have been trying to make my laptop (Pavilion dv7, bought less then a year ago) to work as it used before for a week now and still can't manage. It seems that the Laptop is not char

  • Connect 3.5mm stereo audio devices to USB P

    Hi (sorry for my english) I see some webs with the front panel connector for audigy an X-fi: Connecting the SoundBlaster Audigy2 ZS to the Front Panel (and X-Fi) http://audigy2zshowto.blogspot.com/ Sound Blaster Audigy/X-Fi Harness 2.0 http://harness

  • Security and Privacy in settings refuses to unlock

    Any solution to unlocking security and privacy in settings, it won't allow itself to unlock "Click the lock to make changes" stays locked Thanks