Sweep Private Keys- Issue

In Counterwallet website I could see the altcoins in bitcoin wallet and amounts using the import menu and my bitcoin private compressed wif key but could not import/sweep them successfully.

First I tried it at another day on counterparty website but it did not help.
Then I used manually the instructions from “something” for FLDC coins and the sweep was successful.
After that the counterparty website sweep worked again for another altcoin.

Manually in cmd shell:

  1. use the curl.exe command with source bitcoin adress and destination counterwallet adress, asset type your altcoin “FLDC” and quantity in satoshi, that means multiply your coin value from counterwallet with 100000000

curl.exe --user rpc:1234 -H “Content-Type: application/json; charset=UTF-8” -H “Accept:application/json, text/javascript” --data “{“method”: “create_send”, “params”: { “source”: “1234bitcoinadress5678”, “destination”: “1234counterwalletadress5678”, “asset”: “FLDC”, “quantity”: 3200000000000.0}, “jsonrpc”: “2.0”, “id”: 1 }” http://public.coindaddy.io:4000/api/

=> curl result “0100000001c…”

At bitcoin-qt console
2) signrawtransaction “0100000001c…”
=> sign result “01234…”

  1. sendrawtransaction “01234…”
    => If there was no error message the sweep was triggered successfully