messagebird · Schema
HlrLookup
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the HLR lookup. |
| network | integer | The MCC-MNC code of the mobile network operator. |
| reference | string | The client reference. |
| status | string | The status of the HLR lookup. |
| createdDatetime | string | The date and time when the HLR lookup was created. |
| statusDatetime | string | The date and time of the last status update. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HlrLookup",
"title": "HlrLookup",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the HLR lookup."
},
"network": {
"type": "integer",
"description": "The MCC-MNC code of the mobile network operator."
},
"reference": {
"type": "string",
"description": "The client reference."
},
"status": {
"type": "string",
"description": "The status of the HLR lookup.",
"enum": [
"sent",
"absent",
"active",
"unknown",
"failed"
]
},
"createdDatetime": {
"type": "string",
"format": "date-time",
"description": "The date and time when the HLR lookup was created."
},
"statusDatetime": {
"type": "string",
"format": "date-time",
"description": "The date and time of the last status update."
}
}
}