GET api/Payments/GetStripeAccount?BranchId={BranchId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PropertyStripeAccountDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| AccountId | integer |
None. |
|
| BrancheId | integer |
None. |
|
| Username | string |
None. |
|
| Password | string |
None. |
|
| SecretKey | string |
None. |
|
| Notes | string |
None. |
|
| Active | boolean |
None. |
|
| CreateUser | integer |
None. |
|
| CreateDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"AccountId": 1,
"BrancheId": 1,
"Username": "sample string 2",
"Password": "sample string 3",
"SecretKey": "sample string 4",
"Notes": "sample string 5",
"Active": true,
"CreateUser": 1,
"CreateDate": "2026-03-17T16:51:58.1816268-07:00"
}
application/xml, text/xml
Sample:
<PropertyStripeAccountDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProjectServicesAPI.DTO"> <AccountId>1</AccountId> <Active>true</Active> <BrancheId>1</BrancheId> <CreateDate>2026-03-17T16:51:58.1816268-07:00</CreateDate> <CreateUser>1</CreateUser> <Id>1</Id> <Notes>sample string 5</Notes> <Password>sample string 3</Password> <SecretKey>sample string 4</SecretKey> <Username>sample string 2</Username> </PropertyStripeAccountDTO>