Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

phone number instead of MSISDN to follow communalities guidelines #116

Merged
merged 2 commits into from
Jul 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions code/API_definitions/sim_swap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ info:
**SIM swap**:
A SIM swap is a process in which a user's mobile phone number (MSISDN) is associated with a new SIM card (IMSI). This is typically done by contacting the user's mobile service provider and requesting a new SIM card for various reasons, such as a lost or damaged SIM card or upgrading to a new phone.

SimSwap also happens during other actions like changing user's phone number, changing mobile service provider keeping user's mobile phone number or when activating a new SIM associated to the same phone number, known as multisim service.
SIM swap also happens during other actions like changing user's phone number, changing mobile service provider keeping user's mobile phone number or when activating a new SIM associated to the same phone number, known as multisim service. New subscription is considered as a SIM swap as well, the MSISDN which can be used by another person earlier, is associated with a SIM card it was not associated before.

# API functionality

Expand Down Expand Up @@ -72,13 +72,13 @@ paths:
- sim-swap
tags:
- Retrieve SIM swap date
description: Get timestamp of last MSISDN <-> IMSI pairing change for a mobile user account provided with MSIDN.
description: Get timestamp of last SIM swap event for a mobile user account provided with phone number.
operationId: retrieveSimSwapDate
parameters:
- $ref: '#/components/parameters/x-correlator'
requestBody:
description: |
Create a SIM swap date request for a MSISDN identifier.
Create a SIM swap date request for a phone number.
content:
application/json:
schema:
Expand Down Expand Up @@ -125,7 +125,7 @@ paths:
- $ref: '#/components/parameters/x-correlator'
requestBody:
description: |
Create a check SIM swap request for a MSISDN identifier.
Create a check SIM swap request for a phone number.
content:
application/json:
schema:
Expand Down Expand Up @@ -307,7 +307,7 @@ components:
example:
status: 409
code: CONFLICT
message: Another request is created for the same MSISDN
message: Another request is created for the same phone number
Generic500:
description: Server error
headers:
Expand Down