carriers-sip
SIP 503 Service Unavailable
SIP 503 Service Unavailable is a response code meaning the server you reached cannot handle the call right now, usually from overload or capacity limits.
SIP 503 Service Unavailable is a response code in the Session Initiation Protocol that means the server you tried to reach cannot take your call at the moment. It is not saying the number is wrong or busy — it is saying the system itself is unable to serve the request right now. Because it is in the 5xx range, it points the finger at the server side, not at your call being malformed.
In practice a 503 usually means one of three things. The far end is overloaded, you have hit a capacity ceiling, or a piece of the path is down. If you are pushing calls faster than your agreement allows — too high a cps, or calls-per-second, or too many concurrent calls — a carrier commonly answers with a 503 to throttle you. It can also surface during network congestion when there simply is not room for another call.
To diagnose it, grab a sip trace and confirm the 503 is the actual sip response code coming back. Then check your pacing. If 503s cluster when your dialer ramps up, you are almost certainly exceeding a limit. Slowing the dialer or asking the carrier to raise your capacity often clears it. If they appear at random with low volume, the carrier may be having genuine trouble on their end.
A good habit is to treat a burst of 503s as a signal to back off automatically rather than retry hard. Hammering a server that just said it is unavailable rarely helps and can make things worse. Build in a short pause, then resume, and keep your dialing rate within the numbers your carrier agreed to support.
Related terms
Carrier
A carrier is the phone company that actually carries your calls onto the public phone network — VICIdial dials, the carrier delivers.
Concurrent calls
The number of separate phone calls running at the same moment on your system, which sets the real ceiling on how busy your call center can get.
CONGESTION
CONGESTION is a call result meaning the network couldn't complete your call — usually a carrier or routing problem on your side, not the number you dialed.
Calls per second (CPS)
A limit on how many new calls your carrier lets you start each second, used to protect their network and keep your dialing from getting throttled.
SIP response code
A SIP response code is a three-digit number a system returns to explain what happened to a call, similar to the status codes used on the web.
SIP trace
A SIP trace is a captured log of the signaling messages exchanged during a call, used to see exactly where and why a call failed.