> For the complete documentation index, see [llms.txt](https://prosbcdocs.telcobridges.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://prosbcdocs.telcobridges.com/tmedia-documentation/configuration/creating-ss7-point-codes.md).

# Creating SS7 Point Codes

> **Applies to:** Tmedia 3.0, 3.2, 3.3

Point codes are used to define the adjacent and target networks so that calls are properly routed from one network to the next.

To create SS7 originating point codes (OPC) and destination point codes (DPC):

1- Click **Point Codes** in the navigation panel

![PointCodes 0 A](https://docs.telcobridges.com/w/images/9/9a/PointCodes_0_A.png)

2- Click **Create New Point Code**

![PointCodes 1 A](https://docs.telcobridges.com/w/images/1/1a/PointCodes_1_A.png)

3- Configure the new point code:

* Enter a **name** for the point code
* Select a point code **type** (select type-specific parameters)
* Select a point code **length** (14, 16, 24 bits)
* Enter a **point code**. Either as bits, decimal, or hexadecimal.
* Click **Create**

In this example, an originating point code (OPC) is created.

![PointCodes 2 B](https://docs.telcobridges.com/w/images/8/84/PointCodes_2_B.png)

4. Verify that the **"PointCode was successfully created"** message appears, and the new point code appears in the **Point Codes** list

![PointCodes 3 A](https://docs.telcobridges.com/w/images/8/89/PointCodes_3_A.png)

**Path**

```
/configurations/@[configuration_name]/point_codes/@[point_code]
```

**Parameters (text)**

```
/configurations/@[configuration_name]/point_codes/@[point_code]
length     = "14bits format=3.8.3"
name       = "@[point_code]"
point_code = "1.7.2"
type       = "OPC"
```

**Parameters (json)**

```
{
  "length" : "14bits format=3.8.3",
  "name" : "@[point_code]",
  "point_code" : "1.7.2",
  "type" : "OPC"
}
```

### List of parameters

* [Name](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/name/README.md)
* [Type](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/type/README.md)
* [Length](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/parameters/dpc-length/README.md)
* [Point Code](https://github.com/telcobridges-main/tmedia-wiki/tree/main/reference/signalling/point-code/README.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://prosbcdocs.telcobridges.com/tmedia-documentation/configuration/creating-ss7-point-codes.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
