@itentialopensource/adapter-att_mobility
Version:
This adapter integrates with system described as: att-mobility.
149 lines • 3.28 kB
JSON
{
"openapi": "3.0.0",
"info": {
"title": "ATT-Mobility",
"version": "1.0.0"
},
"servers": [
{
"url": "https://apsapi.att.com:{port}",
"variables": {
"port": {
"default": "8082"
}
}
}
],
"paths": {
"/sp/mobilityactivations/api/v1/serviceactivation/{requestId}": {
"get": {
"description": "getServiceActivationStatus",
"parameters": [
{
"in": "path",
"name": "requestId",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Success"
}
}
}
},
"/sp/mobility/billingmgmt/api/v1/billingaccount/{billingAccountNumber}": {
"get": {
"description": "getBillingAccountDetails",
"parameters": [
{
"in": "path",
"name": "billingAccountNumber",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Success"
}
}
}
},
"/sp/mobility/lineconfig/api/v1/service/{subscriberLine}": {
"get": {
"description": "getSubscriberLineDetails",
"parameters": [
{
"in": "path",
"name": "subscriberLine",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Success"
}
}
}
},
"/sp/mobilityactivations/api/v1/serviceactivation": {
"post": {
"description": "postServiceActivation",
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}
},
"/sp/mobility/lineconfig/api/v1/service/{subsciberLine}": {
"patch": {
"description": "editSubscriberLineDetails",
"parameters": [
{
"in": "path",
"name": "subsciberLine",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}
},
"/api/mobility/lineDetails/imei": {
"post": {
"description": "queryDeviceByIMEI",
"parameters": [
{
"in": "header",
"name": "imei",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Success"
}
}
}
}
}
}