Query Profile Log

# Query Profile Log

Simlessly API (v1.0.0): Query Profile Log

# POST

https://rsp.simlessly.com/api/v1/profile/log (opens new window)

# Parameters of Request

Name Type MOC Description Example
iccid String Mandatory ICCID (length: 19-20) 89860468152080349618
pageParam PageParam required Page parameter JSON see below PageParam table.

# Example of Request

{
    "iccid": " 89860468152080349618",
    "pageParam": {
        "page": 1,
        "pageSize": 10
    }
}

# Parameters of Response

Name Type MOC Description Example
iccid String Mandatory ICCID (length: 19-20) 89860468152080349618
eid String Optional EID 89049032000001000000167454952138
status String Mandatory Event AVAILABLE
reason String Optional Failed reason ""
operator String Required Operator kane.h@simlessly.com
createTime String Required Created time 12/22/2023, 23:59:59
pageParam PageParam required Page parameter JSON see below PageParam table.

# Example of Response

 {
  "obj":{
    "profileLogs": [
      {
        "iccid": "89860468152080349618",
        "eid": "89049032000001000000167454952138",
        "status": "AVAILABLE",
        "reason": "",
        "operator": "kane.h@simlessly.com",
        "createTime": "12/22/2023, 23:59:59"
      }
    ],
    "pageParam": {
      "page": 1,
      "pageSize": 10,
      "total": 1
    }
  },
  "success": true,
  "msg": "",
  "code": "00000"
}